AndrewZhaoLuo commented on a change in pull request #10450:
URL: https://github.com/apache/tvm/pull/10450#discussion_r818281692
##########
File path: python/tvm/relay/frontend/onnx.py
##########
@@ -3935,6 +3935,58 @@ def try_resolve_to_const(x, dtype_override=None):
return y
+class MatMulInteger(OnnxOpConverter):
+ """Operator converter for MatMulInteger."""
+
+ @classmethod
+ def _impl_v10(cls, inputs, attr, params):
+ a = inputs[0]
Review comment:
https://github.com/onnx/onnx/blob/main/docs/Operators.md#matmulinteger
<-- I was fixated on the line where it said it was identical to numpy's. It
appears the zero points are not fixed always so using QLinearMatMul is probably
best choice.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]