Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tvm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cld
ml
tvm
Commits
a3a9dbeb
Commit
a3a9dbeb
authored
7 years ago
by
Tianqi Chen
Browse files
Options
Downloads
Patches
Plain Diff
Make compiler more robust (#378)
parent
860adec8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
nnvm/python/nnvm/compiler/build_module.py
+3
-1
3 additions, 1 deletion
nnvm/python/nnvm/compiler/build_module.py
nnvm/src/compiler/compile_engine.cc
+17
-12
17 additions, 12 deletions
nnvm/src/compiler/compile_engine.cc
with
20 additions
and
13 deletions
nnvm/python/nnvm/compiler/build_module.py
+
3
−
1
View file @
a3a9dbeb
...
...
@@ -279,8 +279,10 @@ def _run_graph(graph, params):
graph
,
libmod
,
_
=
build
(
graph
,
target
,
shape
,
dtype
)
m
=
graph_runtime
.
create
(
graph
,
libmod
,
ctx
)
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
():
set_input
(
k
,
tvm
.
nd
.
array
(
v
))
if
k
in
kset
:
set_input
(
k
,
tvm
.
nd
.
array
(
v
))
run
()
out_data
=
[]
for
i
,
kv
in
enumerate
(
zip
(
oshape
,
odtype
)):
...
...
This diff is collapsed.
Click to expand it.
nnvm/src/compiler/compile_engine.cc
+
17
−
12
View file @
a3a9dbeb
...
...
@@ -135,12 +135,13 @@ class CompileEngine {
}
// get schedule and its args
std
::
pair
<
Schedule
,
Array
<
tvm
::
Tensor
>
>
GetScheduleArgs
(
Graph
graph
,
const
Array
<
tvm
::
Tensor
>
&
inputs
,
const
std
::
string
&
target
,
int
master_idx
,
std
::
string
*
readable_name
,
Array
<
tvm
::
Tensor
>
*
outputs
)
{
std
::
tuple
<
Schedule
,
Array
<
tvm
::
Tensor
>
,
Graph
>
GetScheduleArgs
(
Graph
graph
,
const
Array
<
tvm
::
Tensor
>
&
inputs
,
const
std
::
string
&
target
,
int
master_idx
,
std
::
string
*
readable_name
,
Array
<
tvm
::
Tensor
>
*
outputs
)
{
// shape, type
static
auto
&
fcompute
=
nnvm
::
Op
::
GetAttr
<
FTVMCompute
>
(
"FTVMCompute"
);
...
...
@@ -221,12 +222,14 @@ class CompileEngine {
idx
[
master_idx
].
source
->
attrs
,
outs
,
target
);
// store extra return values
if
(
readable_name
!=
nullptr
)
if
(
readable_name
!=
nullptr
)
{
*
readable_name
=
readable_name_os
.
str
();
if
(
outputs
!=
nullptr
)
}
if
(
outputs
!=
nullptr
)
{
*
outputs
=
outs
;
}
return
std
::
make_
pair
(
sch
,
all_args
);
return
std
::
make_
tuple
(
sch
,
all_args
,
graph
);
}
// run the actual lowering process
...
...
@@ -239,8 +242,9 @@ class CompileEngine {
Array
<
tvm
::
Tensor
>
outputs
;
Schedule
sch
;
std
::
tie
(
sch
,
all_args
)
=
GetScheduleArgs
(
graph
,
inputs
,
target
,
master_idx
,
&
readable_name
,
&
outputs
);
std
::
tie
(
sch
,
all_args
,
graph
)
=
GetScheduleArgs
(
graph
,
inputs
,
target
,
master_idx
,
&
readable_name
,
&
outputs
);
std
::
shared_ptr
<
GraphFuncNode
>
gf
=
std
::
make_shared
<
GraphFuncNode
>
();
gf
->
target
=
target
;
...
...
@@ -335,7 +339,8 @@ TVM_REGISTER_GLOBAL("nnvm.compiler.CacheItem2ScheduleArgs")
Schedule
sch
;
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
);
Array
<
tvm
::
NodeRef
>
ret
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment