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

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


The following commit(s) were added to refs/heads/v0.6 by this push:
     new 804b7fa  Fix dense (#4728) (#5905)
804b7fa is described below

commit 804b7fa4593cdf68b8c15210267091d5be2febce
Author: Haichen Shen <shenhaic...@gmail.com>
AuthorDate: Tue Jun 23 18:09:21 2020 -0700

    Fix dense (#4728) (#5905)
---
 topi/python/topi/x86/dense.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/topi/python/topi/x86/dense.py b/topi/python/topi/x86/dense.py
index 605a175..5a151a5 100644
--- a/topi/python/topi/x86/dense.py
+++ b/topi/python/topi/x86/dense.py
@@ -191,7 +191,6 @@ def _schedule_dense_pack_template(cfg, s, C):
     z, y, x = s[packedB].op.axis
     s[packedB].reorder(z, x, y)
     s[packedB].parallel(z)
-    s[packedB].vectorize(y)
     return s
 
 

Reply via email to