Skip to content

Commit

Permalink
[TOPI][x86] Injective schedule improvement (apache#4786)
Browse files Browse the repository at this point in the history
* [TOPI][x86] Injective Schedule Improvement.

* Add tiling.

* Vectorize when there is an axis.
  • Loading branch information
anijain2305 authored and alexwong committed Feb 26, 2020
1 parent 5c2fd5d commit 289aa72
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions topi/python/topi/x86/injective.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ def schedule_injective_from_existing(sch, out):
sch[out].parallel(fused)
elif len(sch[out].op.axis) >= 1:
sch[out].parallel(sch[out].op.axis[0])

# Vectorize the inner most for loop. Tiling first to get a const extent
if len(sch[out].op.axis) >= 1:
l = sch[out].op.axis[-1]
_, li = sch[out].split(l, factor=16)
sch[out].vectorize(li)
return sch

@generic.schedule_injective.register(["cpu"])
Expand Down

0 comments on commit 289aa72

Please sign in to comment.