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
d0c406e6
Commit
d0c406e6
authored
Aug 14, 2019
by
Thierry Moreau
Committed by
Jared Roesch
Aug 14, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix dense tuning (#3768)
parent
ae1ba36d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
12 deletions
+31
-12
vta/scripts/tune_dense.py
+31
-12
No files found.
vta/scripts/tune_dense.py
View file @
d0c406e6
...
...
@@ -33,9 +33,9 @@ env = vta.get_env()
Workload
=
namedtuple
(
"DenseWorkload"
,
[
'batch'
,
'in_filter'
,
'out_filter'
])
resnet
_wkls
=
[
# Workloads of resnet18 on imagenet
(
'
resnet-18.dense'
,
Workload
(
16
,
512
,
1024
)),
dense
_wkls
=
[
(
'lstm.dense.1'
,
Workload
(
1
,
256
,
128
)),
(
'
lstm.dense.4'
,
Workload
(
4
,
256
,
128
)),
]
@tvm.tag_scope
(
tag
=
topi
.
tag
.
ELEMWISE
)
...
...
@@ -71,7 +71,14 @@ if __name__ == '__main__':
# Logging config (for printing tuning log to the screen)
logging
.
basicConfig
()
logging
.
getLogger
(
'autotvm'
)
.
setLevel
(
logging
.
DEBUG
)
# logging.getLogger('autotvm').setLevel(logging.DEBUG)
# Tuning log files
log_file
=
"
%
s.dense.log"
%
(
env
.
TARGET
)
# create tmp log file
tmp_log_file
=
log_file
+
".tmp"
if
os
.
path
.
exists
(
log_file
):
os
.
remove
(
log_file
)
# Get tracker info from env
tracket_host
=
os
.
environ
.
get
(
"TVM_TRACKER_HOST"
,
None
)
...
...
@@ -80,7 +87,9 @@ if __name__ == '__main__':
print
(
"Set your AutoTVM tracker node host and port variables to run the autotuner"
)
exit
()
for
wl_name
,
wl
in
resnet_wkls
:
for
idx
,
(
wl_name
,
wl
)
in
enumerate
(
dense_wkls
):
prefix
=
"[Task
%2
d/
%2
d] "
%
(
idx
,
len
(
dense_wkls
))
# Workload parameters
N
=
wl
.
batch
...
...
@@ -91,15 +100,24 @@ if __name__ == '__main__':
target
=
tvm
.
target
.
vta
(),
target_host
=
env
.
target_host
,
template_key
=
'direct'
)
print
(
task
.
config_space
)
# Tune
measure_option
=
autotvm
.
measure_option
(
builder
=
autotvm
.
LocalBuilder
(
build_func
=
vta
.
vta_autotvm_build_func
),
runner
=
autotvm
.
RPCRunner
(
env
.
TARGET
,
tracket_host
,
int
(
tracket_port
),
number
=
4
,
repeat
=
3
,
timeout
=
10000
,
check_correctness
=
True
))
builder
=
autotvm
.
LocalBuilder
(),
runner
=
autotvm
.
RPCRunner
(
env
.
TARGET
,
host
=
tracket_host
,
port
=
int
(
tracket_port
),
number
=
5
,
timeout
=
60
,
check_correctness
=
True
))
# Run Tuner
tuner
=
autotvm
.
tuner
.
RandomTuner
(
task
)
tuner
.
tune
(
n_trial
=
len
(
task
.
config_space
),
tuner
.
tune
(
n_trial
=
len
(
task
.
config_space
),
early_stopping
=
None
,
measure_option
=
measure_option
,
callbacks
=
[
autotvm
.
callback
.
log_to_file
(
'dense.log'
)])
callbacks
=
[
autotvm
.
callback
.
progress_bar
(
len
(
task
.
config_space
),
prefix
=
prefix
),
autotvm
.
callback
.
log_to_file
(
tmp_log_file
)])
print
(
"
\n
Best tuner config:"
)
print
(
tuner
.
best_config
)
# Pick best records to a cache file
autotvm
.
record
.
pick_best
(
tmp_log_file
,
log_file
)
os
.
remove
(
tmp_log_file
)
\ No newline at end of file
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