You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happens cause concat received tensors with different ranks and the logic kinda fell apart. IMO verify function must check whether all the operands have same rank. (I will send a PR for this soon).
Now as to how it got different ranked tensors, that's the actual cause of this error.
The concat Op has a constant [-1] Tensor to concatenated to the input tensor. But for some reason the onnx-mlir lowers it to
I was trying to lower Mistral-7B-v0.1.onnx model, when I get the following error.
This error doesn't much context into what went wrong.
I did some debugging and found out that it was Concat Op was giving this error here
https://github.com/onnx/onnx-mlir/blob/a5ae8baff62209567eec4cc1e8a621cd36292cce/src/Dialect/ONNX/ONNXOps/Tensor/Concat.cpp#L99C1-L103C1
This happens cause concat received tensors with different ranks and the logic kinda fell apart. IMO
verify
function must check whether all the operands have same rank. (I will send a PR for this soon).Now as to how it got different ranked tensors, that's the actual cause of this error.
The concat Op has a constant
[-1]
Tensor to concatenated to the input tensor. But for some reason the onnx-mlir lowers it toThe constant Op strips the constant tensors Op of it's dimensionality for some reason, and I can't undersrtand why
The text was updated successfully, but these errors were encountered: