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
a3a9dbeb
Commit
a3a9dbeb
authored
Feb 20, 2018
by
Tianqi Chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make compiler more robust (#378)
parent
860adec8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
6 deletions
+13
-6
nnvm/python/nnvm/compiler/build_module.py
+2
-0
nnvm/src/compiler/compile_engine.cc
+11
-6
No files found.
nnvm/python/nnvm/compiler/build_module.py
View file @
a3a9dbeb
...
@@ -279,7 +279,9 @@ def _run_graph(graph, params):
...
@@ -279,7 +279,9 @@ def _run_graph(graph, params):
graph
,
libmod
,
_
=
build
(
graph
,
target
,
shape
,
dtype
)
graph
,
libmod
,
_
=
build
(
graph
,
target
,
shape
,
dtype
)
m
=
graph_runtime
.
create
(
graph
,
libmod
,
ctx
)
m
=
graph_runtime
.
create
(
graph
,
libmod
,
ctx
)
set_input
,
run
,
get_output
=
m
[
"set_input"
],
m
[
"run"
],
m
[
"get_output"
]
set_input
,
run
,
get_output
=
m
[
"set_input"
],
m
[
"run"
],
m
[
"get_output"
]
kset
=
set
(
graph
.
symbol
.
list_input_names
())
for
k
,
v
in
params
.
items
():
for
k
,
v
in
params
.
items
():
if
k
in
kset
:
set_input
(
k
,
tvm
.
nd
.
array
(
v
))
set_input
(
k
,
tvm
.
nd
.
array
(
v
))
run
()
run
()
out_data
=
[]
out_data
=
[]
...
...
nnvm/src/compiler/compile_engine.cc
View file @
a3a9dbeb
...
@@ -135,7 +135,8 @@ class CompileEngine {
...
@@ -135,7 +135,8 @@ class CompileEngine {
}
}
// get schedule and its args
// get schedule and its args
std
::
pair
<
Schedule
,
Array
<
tvm
::
Tensor
>
>
GetScheduleArgs
(
Graph
graph
,
std
::
tuple
<
Schedule
,
Array
<
tvm
::
Tensor
>
,
Graph
>
GetScheduleArgs
(
Graph
graph
,
const
Array
<
tvm
::
Tensor
>
&
inputs
,
const
Array
<
tvm
::
Tensor
>
&
inputs
,
const
std
::
string
&
target
,
const
std
::
string
&
target
,
int
master_idx
,
int
master_idx
,
...
@@ -221,12 +222,14 @@ class CompileEngine {
...
@@ -221,12 +222,14 @@ class CompileEngine {
idx
[
master_idx
].
source
->
attrs
,
outs
,
target
);
idx
[
master_idx
].
source
->
attrs
,
outs
,
target
);
// store extra return values
// store extra return values
if
(
readable_name
!=
nullptr
)
if
(
readable_name
!=
nullptr
)
{
*
readable_name
=
readable_name_os
.
str
();
*
readable_name
=
readable_name_os
.
str
();
if
(
outputs
!=
nullptr
)
}
if
(
outputs
!=
nullptr
)
{
*
outputs
=
outs
;
*
outputs
=
outs
;
}
return
std
::
make_
pair
(
sch
,
all_args
);
return
std
::
make_
tuple
(
sch
,
all_args
,
graph
);
}
}
// run the actual lowering process
// run the actual lowering process
...
@@ -239,7 +242,8 @@ class CompileEngine {
...
@@ -239,7 +242,8 @@ class CompileEngine {
Array
<
tvm
::
Tensor
>
outputs
;
Array
<
tvm
::
Tensor
>
outputs
;
Schedule
sch
;
Schedule
sch
;
std
::
tie
(
sch
,
all_args
)
=
GetScheduleArgs
(
graph
,
inputs
,
target
,
master_idx
,
std
::
tie
(
sch
,
all_args
,
graph
)
=
GetScheduleArgs
(
graph
,
inputs
,
target
,
master_idx
,
&
readable_name
,
&
outputs
);
&
readable_name
,
&
outputs
);
std
::
shared_ptr
<
GraphFuncNode
>
gf
=
std
::
make_shared
<
GraphFuncNode
>
();
std
::
shared_ptr
<
GraphFuncNode
>
gf
=
std
::
make_shared
<
GraphFuncNode
>
();
...
@@ -335,7 +339,8 @@ TVM_REGISTER_GLOBAL("nnvm.compiler.CacheItem2ScheduleArgs")
...
@@ -335,7 +339,8 @@ TVM_REGISTER_GLOBAL("nnvm.compiler.CacheItem2ScheduleArgs")
Schedule
sch
;
Schedule
sch
;
Array
<
tvm
::
Tensor
>
all_args
;
Array
<
tvm
::
Tensor
>
all_args
;
std
::
tie
(
sch
,
all_args
)
=
CompileEngine
::
Global
()
->
GetScheduleArgs
(
std
::
tie
(
sch
,
all_args
,
graph
)
=
CompileEngine
::
Global
()
->
GetScheduleArgs
(
graph
,
inputs
,
target
,
master_idx
,
nullptr
,
nullptr
);
graph
,
inputs
,
target
,
master_idx
,
nullptr
,
nullptr
);
Array
<
tvm
::
NodeRef
>
ret
;
Array
<
tvm
::
NodeRef
>
ret
;
...
...
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