Some problems in topi.nn.matmul() code #30
YuChenHAHAHA
started this conversation in
General
Replies: 1 comment
-
There may be something wrong with the document. If you take a look at the python implementation of this function, you will find that By the way, there's another API tvm.topi.nn.dense which is a wrapper for tvm.topi.nn.matmul. It is equivalent to tvm.topi.nn.matmul with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
First of all I want to thank you for opening this course.

When I did assignment 1, I found a problem in "tvm.topi.nn.matmul(tensor_a, tensor_b)".
The script defined the shape of tensor_b is [out_dim, in_dim].
However, in the function "matmul()" in "dense.py" in TVM (line 83), the definition of tensor_b's shape is contrary.

This will result in an error on line 86.
Thank you again for everything you’ve done.
Beta Was this translation helpful? Give feedback.
All reactions