d-smirnov commented on a change in pull request #8509:
URL: https://github.com/apache/tvm/pull/8509#discussion_r786023310
##########
File path: python/tvm/topi/nn/dense.py
##########
@@ -81,7 +81,9 @@ def matmul(
out_dim, red_dim = tensor_b.shape
else:
red_dim, out_dim = tensor_b.shape
- assert in_dim == red_dim
+
+ # cmp should be done by values (i.e. by string representation proxies)
+ assert str(in_dim) == str(red_dim)
Review comment:
Changed
--
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]