Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreEichenberger committed Jul 11, 2024
2 parents bb0509b + d4d5914 commit b0e4c34
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,10 @@ bool isSuitableForZDNN<ONNXMatMulOp>(
}
return true;
}
return false; // unsupported case
std::string message = "Dim size of A(" + std::to_string(shapeA.size()) +
") and B(" + std::to_string(shapeB.size()) +
") is not supported.";
return onnxToZHighUnsupportedReport(op.getOperation(), message);
}

/// Check legality for ONNXGemm.
Expand Down

0 comments on commit b0e4c34

Please sign in to comment.