abhikran-quic commented on a change in pull request #9186:
URL: https://github.com/apache/tvm/pull/9186#discussion_r733260630
##########
File path: python/tvm/relay/frontend/onnx.py
##########
@@ -873,6 +874,73 @@ def flatten_to_nd(x, x_shape, nd=3):
return _op.nn.dense(inputs[0], input_1_t)
+class MatMulInteger16(OnnxOpConverter):
+ """Operator converter for MatMulInteger16 from Microsoft onnxruntime
contrib opset."""
+
+ @classmethod
+ def _impl_v10(cls, inputs, attr, params):
+ assert len(inputs) == 2, "MatMul op take 2 inputs, {}
given".format(len(inputs))
+ a_shape = shape_of(inputs[0])
Review comment:
Sure. I'll rework on this as you've requested.
--
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]