Skip to content

Commit

Permalink
Update values of vectorization factor
Browse files Browse the repository at this point in the history
  • Loading branch information
echuraev committed Sep 3, 2021
1 parent 5079c5b commit 6d9d210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/topi/gpu/conv2d_nhwc.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def schedule_conv2d_nhwc_direct(cfg, s, Conv):
cfg.define_knob("vthread_n", [1] if dynamic_batch else [1, 2])
cfg.define_knob("vthread_c", [1, 2])
cfg.define_knob("step", [16, 3, 32, 64])
cfg.define_knob("vectorize", [1, 2, 4, 8, 16])
cfg.define_knob("vectorize", [1, 2, 4, 8])

# fallback support
target = tvm.target.Target.current()
Expand Down

0 comments on commit 6d9d210

Please sign in to comment.