abhikran-quic commented on a change in pull request #9186:
URL: https://github.com/apache/tvm/pull/9186#discussion_r722466407
##########
File path: tests/python/frontend/onnx/test_forward.py
##########
@@ -1282,6 +1282,47 @@ def verify_batch_matmul(a_shape, b_shape, out_shape,
convert_config=None):
)
[email protected]_targets
+def test_matmulinteger16(target, dev):
+ def verify_matmulinteger16(a_shape, b_shape, out_shape):
+ a_dtype = "int16"
+ b_dtype = "int16"
+ low = -10
+ high = 10
Review comment:
Since the op can be used for signed/unsigned integers, the range is kept
as [-10, 10] to cover common inputs.
--
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]