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
7751a6ba
Commit
7751a6ba
authored
Aug 15, 2018
by
Lianmin Zheng
Committed by
Tianqi Chen
Aug 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AUTOTVM] Fix GATuner and improve error message (#1605)
parent
54a115ef
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
34 additions
and
5 deletions
+34
-5
include/tvm/operation.h
+2
-0
python/tvm/autotvm/measure/measure_methods.py
+2
-0
python/tvm/autotvm/task/nnvm_integration.py
+13
-0
python/tvm/autotvm/task/task.py
+1
-1
python/tvm/autotvm/task/topi_integration.py
+1
-1
python/tvm/autotvm/tuner/callback.py
+6
-0
python/tvm/autotvm/tuner/ga_tuner.py
+9
-3
No files found.
include/tvm/operation.h
View file @
7751a6ba
...
...
@@ -366,6 +366,8 @@ class ExternOpNode : public OperationNode {
v
->
Visit
(
"tag"
,
&
tag
);
v
->
Visit
(
"attrs"
,
&
attrs
);
v
->
Visit
(
"inputs"
,
&
inputs
);
v
->
Visit
(
"input_placeholders"
,
&
input_placeholders
);
v
->
Visit
(
"output_placeholders"
,
&
output_placeholders
);
v
->
Visit
(
"body"
,
&
body
);
}
EXPORT
static
Operation
make
(
std
::
string
name
,
...
...
python/tvm/autotvm/measure/measure_methods.py
View file @
7751a6ba
...
...
@@ -394,6 +394,8 @@ def _measure_common(input_pack, build_func, build_kwargs, number, repeat,
msg
=
str
(
exc
)
if
"Stack trace returned"
in
msg
:
msg
=
msg
[:
msg
.
index
(
"Stack trace returned"
)]
if
"CUDA Source"
in
msg
:
msg
=
msg
[:
msg
.
index
(
"CUDA Source"
)]
costs
=
(
RuntimeError
(
msg
),)
errno
=
MeasureErrorNo
.
RUNTIME_DEVICE
tstamp
=
time
.
time
()
...
...
python/tvm/autotvm/task/nnvm_integration.py
View file @
7751a6ba
...
...
@@ -4,12 +4,16 @@ Decorator and utilities for the integration with TOPI and NNVM
"""
import
warnings
import
logging
from
...
import
tensor
,
placeholder
,
target
as
_target
from
..util
import
get_const_tuple
from
.task
import
create
,
register
from
.dispatcher
import
ApplyHistoryBest
logger
=
logging
.
getLogger
(
'autotvm'
)
def
serialize_args
(
args
):
"""serialize arguments of a topi function to a hashable tuple.
...
...
@@ -176,9 +180,18 @@ def extract_from_graph(graph, shape, dtype, target, symbols, target_host=None):
# run compiler to collect all TOPI calls during compilation
env
.
reset
()
# disable logger temporarily
old_state
=
logger
.
disabled
logger
.
disabled
=
True
# use a dummy target to do a fake compile for collecting topi calls
dummy_target
=
_target
.
create
(
"opencl -device=dummy"
)
with
ApplyHistoryBest
([],
allow_fallback
=
True
):
nnvm
.
compiler
.
build
(
graph
,
target
=
dummy_target
,
shape
=
shape
,
dtype
=
dtype
)
logger
.
disabled
=
old_state
tasks
=
[]
for
task_name
,
args
in
env
.
get_tasks
():
tasks
.
append
(
create
(
task_name
,
args
,
...
...
python/tvm/autotvm/task/task.py
View file @
7751a6ba
...
...
@@ -368,7 +368,7 @@ def compute_flop(sch):
pass
else
:
raise
FlopCalculationError
(
"Only support tvm.compute currently. "
"Other ops like tvm.scan is not supported"
)
"Other ops like tvm.scan
/tvm.extern
is not supported"
)
return
ret
try
:
...
...
python/tvm/autotvm/task/topi_integration.py
View file @
7751a6ba
...
...
@@ -62,7 +62,7 @@ def register_topi_compute(topi_compute, target_keys, template_keys, func=None):
for
target_key
in
targets
:
if
target_key
not
in
_REGISTED_DISPATHCER
:
_REGISTED_DISPATHCER
[
target_key
]
=
{}
if
topi_compute
not
in
_REGISTED_DISPATHCER
:
if
topi_compute
not
in
_REGISTED_DISPATHCER
[
target_key
]
:
@topi_compute.register
(
target_key
)
@dispatcher
def
config_dispatcher
(
*
args
,
**
kwargs
):
...
...
python/tvm/autotvm/tuner/callback.py
View file @
7751a6ba
...
...
@@ -101,11 +101,17 @@ def progress_bar(total, prefix=''):
self
.
total
=
total
def
__del__
(
self
):
if
logger
.
level
<
logging
.
DEBUG
:
# only print progress bar in non-debug mode
sys
.
stdout
.
write
(
' Done.
\n
'
)
ctx
=
_Context
()
tic
=
time
.
time
()
if
logger
.
level
<
logging
.
DEBUG
:
# only print progress bar in non-debug mode
sys
.
stdout
.
write
(
'
\r
%
s Current/Best:
%7.2
f/
%7.2
f GFLOPS | Progress: (
%
d/
%
d) '
'|
%.2
f s'
%
(
prefix
,
0
,
0
,
0
,
total
,
time
.
time
()
-
tic
))
sys
.
stdout
.
flush
()
def
_callback
(
tuner
,
inputs
,
results
):
ctx
.
ct
+=
len
(
inputs
)
...
...
python/tvm/autotvm/tuner/ga_tuner.py
View file @
7751a6ba
...
...
@@ -47,6 +47,7 @@ class GATuner(Tuner):
# random initialization
self
.
pop_size
=
min
(
self
.
pop_size
,
len
(
self
.
space
))
self
.
elite_num
=
min
(
self
.
pop_size
,
self
.
elite_num
)
for
_
in
range
(
self
.
pop_size
):
tmp_gene
=
point2knob
(
np
.
random
.
randint
(
len
(
self
.
space
)),
self
.
dims
)
while
knob2point
(
tmp_gene
,
self
.
dims
)
in
self
.
visited
:
...
...
@@ -70,9 +71,9 @@ class GATuner(Tuner):
y
=
inp
.
task
.
flop
/
np
.
mean
(
res
.
costs
)
self
.
scores
.
append
(
y
)
else
:
self
.
scores
.
append
(
0
)
self
.
scores
.
append
(
0
.0
)
if
len
(
self
.
scores
)
>=
len
(
self
.
genes
):
if
len
(
self
.
scores
)
>=
len
(
self
.
genes
)
and
len
(
self
.
visited
)
<
len
(
self
.
space
)
:
genes
=
self
.
genes
+
self
.
elites
scores
=
np
.
array
(
self
.
scores
[:
len
(
self
.
genes
)]
+
self
.
elite_scores
)
...
...
@@ -85,7 +86,12 @@ class GATuner(Tuner):
# cross over
indices
=
np
.
arange
(
len
(
genes
))
scores
/=
np
.
max
(
scores
)
max_score
=
np
.
max
(
scores
)
if
max_score
<
1e-8
:
probs
=
np
.
empty_like
(
scores
)
probs
[:]
=
1.0
/
len
(
scores
)
else
:
scores
/=
max_score
probs
=
scores
/
np
.
sum
(
scores
)
tmp_genes
=
[]
for
_
in
range
(
self
.
pop_size
):
...
...
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