Skip to content

Commit

Permalink
Fix call mkl gemm in mkldnn.py (#7007)
Browse files Browse the repository at this point in the history
Co-authored-by: zhangfucheng <zhangfucheng.jason@bytedance.com>
  • Loading branch information
CaramelFc and zhangfucheng committed Dec 1, 2020
1 parent 73a1a9a commit fe4c66b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/contrib/mkldnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def matmul(lhs, rhs, transa=False, transb=False, **kwargs):
(n, m),
[lhs, rhs],
lambda ins, outs: tvm.tir.call_packed(
"tvm.contrib.mkl.matmul", ins[0], ins[1], outs[0], transa, transb
"tvm.contrib.mkldnn.matmul", ins[0], ins[1], outs[0], transa, transb
),
name="C",
**kwargs,
Expand Down

0 comments on commit fe4c66b

Please sign in to comment.