You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ha...@apache.org on 2020/01/18 17:05:52 UTC

[incubator-tvm] branch master updated: Fix dense (#4728)

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

haichen 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 7e39201  Fix dense (#4728)
7e39201 is described below

commit 7e3920198cb48cc9f5361cefc2253f656c0c6d5a
Author: Haichen Shen <sh...@gmail.com>
AuthorDate: Sat Jan 18 09:05:46 2020 -0800

    Fix dense (#4728)
---
 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 b7a3d6d..dd1822f 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