Feel free to close the topic. Just wanna know the reason why we don’t implement matmul op for relay, I know we can use dense instead, is there any other reason?
Matmul op for relay
I guess that you don’t have to provide the bias term, so that dense degenerates to matmul.
yongwww
#5
yeah, dense will do the same thing as matmul without specifying bias. I like the name tvm.relay.matmul more than tvm.relay.nn.dense for matrix mulitiplication. Anyway, dense is good.
jroesch
#8
We could expose matmul as a synonym. I think this might actually be a good idea, the overloaded use of dense has confused many users (including me when I started working on TVM).