You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2020/01/17 02:50:13 UTC

[GitHub] [incubator-tvm] FrozenGene commented on a change in pull request #4728: [Fix] Fix dense x86 schedule

FrozenGene commented on a change in pull request #4728: [Fix] Fix dense x86 schedule
URL: https://github.com/apache/incubator-tvm/pull/4728#discussion_r367747570
 
 

 ##########
 File path: 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)
 
 Review comment:
   How about using `try_vec`?  It could let AutoTVM to discard large configuration using timeout parameter. And we could keep `vectorize(y)` if it is possible.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services