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
a3776ba5
Commit
a3776ba5
authored
Aug 13, 2017
by
Tianqi Chen
Committed by
GitHub
Aug 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PASS][PRAGMA] Allow pragma debug_skip_region to skip region of computation (#318)
parent
79e482bc
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
22 additions
and
10 deletions
+22
-10
python/tvm/build_module.py
+2
-1
python/tvm/schedule.py
+5
-0
src/lang/target_info.cc
+2
-1
src/pass/coproc_sync.cc
+2
-2
src/pass/remove_no_op.cc
+6
-0
tests/python/unittest/test_lang_reflection.py
+2
-2
tests/python/unittest/test_pass_storage_sync.py
+3
-4
No files found.
python/tvm/build_module.py
View file @
a3776ba5
...
...
@@ -207,9 +207,10 @@ def lower(sch,
for
f
in
cfg
.
add_lower_pass
:
stmt
=
f
(
stmt
)
stmt
=
ir_pass
.
Simplify
(
stmt
)
stmt
=
ir_pass
.
LowerStorageAccessInfo
(
stmt
)
stmt
=
ir_pass
.
RemoveNoOp
(
stmt
)
if
simple_mode
:
return
stmt
stmt
=
ir_pass
.
LowerStorageAccessInfo
(
stmt
)
return
ir_pass
.
MakeAPI
(
stmt
,
name
,
arg_list
,
0
,
cfg
.
restricted_func
)
...
...
python/tvm/schedule.py
View file @
a3776ba5
...
...
@@ -524,6 +524,11 @@ class Stage(NodeBase):
Most pragmas are advanced/experimental features
and may subject to change. List of supported pragmas:
- **debug_skip_region**
Force skip the region marked by the axis and turn it into no-op.
This is useful for debug purposes.
- **parallel_launch_point**
Specify to launch parallel threads outside the
...
...
src/lang/target_info.cc
View file @
a3776ba5
...
...
@@ -12,7 +12,8 @@ TVM_STATIC_IR_FUNCTOR(IRPrinter, vtable)
p
->
stream
<<
"mem-info("
<<
"unit_bits="
<<
op
->
unit_bits
<<
", "
<<
"max_num_bits="
<<
op
->
max_num_bits
<<
", "
<<
"max_simd_bits="
<<
op
->
max_simd_bits
<<
")"
;
<<
"max_simd_bits="
<<
op
->
max_simd_bits
<<
", "
<<
"head_address="
<<
op
->
head_address
<<
")"
;
});
TVM_REGISTER_NODE_TYPE
(
MemoryInfoNode
);
...
...
src/pass/coproc_sync.cc
View file @
a3776ba5
...
...
@@ -204,10 +204,12 @@ class CoProcBarrierDetector : public StorageAccessVisitor {
void
PlanReadBarrier
(
Stmt
stmt
)
{
read_barrier_
=
true
;
this
->
Visit
(
stmt
);
PlanReadBarrier
(
scope_
.
back
(),
nullptr
);
}
void
PlanWriteBarrier
(
Stmt
stmt
)
{
read_barrier_
=
false
;
this
->
Visit
(
stmt
);
PlanWriteBarrier
(
scope_
.
back
(),
nullptr
);
}
std
::
unordered_map
<
const
Node
*
,
std
::
vector
<
Stmt
>
>
barrier_before_
;
...
...
@@ -245,7 +247,6 @@ class CoProcBarrierDetector : public StorageAccessVisitor {
write_set
.
erase
(
it
);
}
};
for
(
size_t
i
=
0
;
i
<
seq
.
size
();
++
i
)
{
const
StmtEntry
&
s
=
seq
[
i
];
for
(
const
AccessEntry
&
acc
:
s
.
access
)
{
...
...
@@ -291,7 +292,6 @@ class CoProcBarrierDetector : public StorageAccessVisitor {
const
StmtEntry
&
s
=
seq
[
i
-
1
];
for
(
const
AccessEntry
&
acc
:
s
.
access
)
{
if
(
acc
.
threads
.
size
()
==
0
&&
acc
.
type
==
kWrite
)
{
CHECK_NE
(
i
,
seq
.
size
());
fupdate
(
i
,
acc
);
write_seq
.
push_back
(
acc
);
}
...
...
src/pass/remove_no_op.cc
View file @
a3776ba5
...
...
@@ -20,6 +20,12 @@ class NoOpRemover : public IRMutator {
return
is_no_op
(
op
->
body
)
?
MakeEvaluate
(
op
->
value
)
:
stmt
;
}
Stmt
Mutate_
(
const
AttrStmt
*
op
,
const
Stmt
&
s
)
final
{
if
(
op
->
attr_key
==
ir
::
attr
::
pragma_scope
)
{
const
std
::
string
&
pname
=
op
->
value
.
as
<
StringImm
>
()
->
value
;
if
(
pname
==
"debug_skip_region"
)
{
return
MakeEvaluate
(
0
);
}
}
Stmt
stmt
=
IRMutator
::
Mutate_
(
op
,
s
);
op
=
stmt
.
as
<
AttrStmt
>
();
return
is_no_op
(
op
->
body
)
?
MakeEvaluate
(
op
->
value
)
:
stmt
;
...
...
tests/python/unittest/test_lang_reflection.py
View file @
a3776ba5
...
...
@@ -30,8 +30,8 @@ def test_make_sum():
B
=
tvm
.
compute
((
2
,),
lambda
i
:
tvm
.
sum
(
A
[
i
,
k
],
axis
=
k
),
name
=
"B"
)
json_str
=
tvm
.
save_json
(
B
)
BB
=
tvm
.
load_json
(
json_str
)
assert
B
.
op
.
body
[
0
]
.
combiner
.
handle
.
value
!=
0
assert
BB
.
op
.
body
[
0
]
.
combiner
.
handle
.
value
!=
0
assert
B
.
op
.
body
[
0
]
.
combiner
is
not
None
assert
BB
.
op
.
body
[
0
]
.
combiner
is
not
None
if
__name__
==
"__main__"
:
test_make_node
()
...
...
tests/python/unittest/test_pass_storage_sync.py
View file @
a3776ba5
...
...
@@ -29,10 +29,6 @@ def test_storage_sync():
def
test_coproc_sync
():
ib
=
tvm
.
ir_builder
.
create
()
n
=
tvm
.
var
(
"n"
)
cp
=
tvm
.
thread_axis
((
0
,
1
),
"cop"
)
@tvm.register_func
(
"tvm.info.mem.global.cache"
)
def
meminfo_cache
():
return
tvm
.
make
.
node
(
...
...
@@ -41,6 +37,9 @@ def test_coproc_sync():
max_simd_bits
=
32
,
max_num_bits
=
128
,
head_address
=
tvm
.
call_extern
(
"handle"
,
"global_cache"
))
ib
=
tvm
.
ir_builder
.
create
()
n
=
tvm
.
var
(
"n"
)
cp
=
tvm
.
thread_axis
((
0
,
1
),
"cop"
)
A
=
ib
.
allocate
(
"float32"
,
128
,
name
=
"A"
,
scope
=
"global.cache"
)
with
ib
.
for_range
(
0
,
n
,
name
=
"i"
)
as
i
:
A
[
i
]
=
A
[
i
]
+
1
...
...
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