Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
f9281241
Commit
f9281241
authored
Oct 18, 2018
by
Zhen Zhang
Committed by
Tianqi Chen
Oct 18, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check iter_type in vectorize (#1921)
parent
f1a4b94b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
src/schedule/schedule_lang.cc
+7
-0
tests/python/unittest/test_lang_schedule.py
+9
-0
No files found.
src/schedule/schedule_lang.cc
View file @
f9281241
...
...
@@ -352,6 +352,13 @@ inline void SetAttrIterType(StageNode* self, IterVar var, IterVarType iter_type)
}
Stage
&
Stage
::
vectorize
(
IterVar
var
)
{
// NOLINT(*)
CHECK
(
var
->
iter_type
==
kDataPar
||
var
->
iter_type
==
kOpaque
||
var
->
iter_type
==
kUnrolled
||
var
->
iter_type
==
kVectorized
||
var
->
iter_type
==
kTensorized
||
var
->
iter_type
==
kParallelized
)
<<
"Cannot vectorize on "
<<
IterVarType2String
(
var
->
iter_type
);
SetAttrIterType
(
operator
->
(),
var
,
kVectorized
);
return
*
this
;
}
...
...
tests/python/unittest/test_lang_schedule.py
View file @
f9281241
from
nose.tools
import
raises
import
tvm
import
pickle
as
pkl
...
...
@@ -112,6 +113,13 @@ def test_vectorize():
assert
s
[
T
]
.
iter_var_attrs
[
xi
]
.
iter_type
==
UNROLL
assert
s
[
T
]
.
iter_var_attrs
[
yi
]
.
iter_type
==
VECTORIZE
@raises
(
Exception
)
def
test_vectorize_commreduce
():
V
=
tvm
.
placeholder
((
128
,),
name
=
'V'
)
ax
=
tvm
.
reduce_axis
((
0
,
128
),
name
=
'ax'
)
O
=
tvm
.
compute
((
1
,),
lambda
_
:
tvm
.
sum
(
V
[
ax
],
axis
=
[
ax
]))
s
=
tvm
.
create_schedule
(
O
.
op
)
s
[
O
]
.
vectorize
(
ax
)
# should throw here
def
test_pragma
():
m
=
100
...
...
@@ -197,3 +205,4 @@ if __name__ == "__main__":
test_split
()
test_fuse
()
test_vectorize
()
test_vectorize_commreduce
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment