masahi commented on a change in pull request #10450:
URL: https://github.com/apache/tvm/pull/10450#discussion_r818009862



##########
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:
       My impression was that `MatMulInteger` exactly corresponds to our 
`qnn.dense`. We can use `QLinearMatMul` converter but we want to skip 
requantize.




-- 
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]


Reply via email to