You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2020/09/17 10:08:27 UTC

[incubator-tvm] branch master updated: fix a typo in topi key (#6502)

This is an automated email from the ASF dual-hosted git repository.

masahi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git


The following commit(s) were added to refs/heads/master by this push:
     new 94e8e73  fix a typo in topi key (#6502)
94e8e73 is described below

commit 94e8e733f39970b916da9a2fffc3150c3317a7f8
Author: Shizhi Tang <rd...@gmail.com>
AuthorDate: Thu Sep 17 18:08:13 2020 +0800

    fix a typo in topi key (#6502)
---
 python/tvm/topi/bifrost/dense.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/tvm/topi/bifrost/dense.py b/python/tvm/topi/bifrost/dense.py
index 4a0158e..85703f1 100644
--- a/python/tvm/topi/bifrost/dense.py
+++ b/python/tvm/topi/bifrost/dense.py
@@ -23,7 +23,7 @@ from .. import nn
 from ..util import traverse_inline
 
 
-@autotvm.register_topi_compute("dense.biforst")
+@autotvm.register_topi_compute("dense.bifrost")
 def dense(_, data, weight, bias=None, out_dtype=None):
     """Dense operator on Biforst"""
     return nn.dense(data, weight, bias, out_dtype)