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
76ca3352
Commit
76ca3352
authored
7 years ago
by
Tianqi Chen
Browse files
Options
Downloads
Patches
Plain Diff
fix tutorial build (#390)
parent
6a7d1c45
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nnvm/tutorials/from_mxnet_to_webgl.py
+5
-7
5 additions, 7 deletions
nnvm/tutorials/from_mxnet_to_webgl.py
with
5 additions
and
7 deletions
nnvm/tutorials/from_mxnet_to_webgl.py
+
5
−
7
View file @
76ca3352
...
...
@@ -41,9 +41,7 @@ import nnvm.testing
# This tutorial must be run with OpenGL backend enabled in TVM.
# The NNVM CI does not enable OpenGL yet. But the user can run this script.
if
not
tvm
.
module
.
enabled
(
"
opengl
"
):
print
(
"
OpenGL backend not enabled. This tutorial cannot be run.
"
)
exit
(
0
)
opengl_enabled
=
tvm
.
module
.
enabled
(
"
opengl
"
)
# To run the local demo, set this flag to True.
run_deploy_local
=
False
...
...
@@ -308,7 +306,7 @@ def deploy_local():
synset
=
download_synset
()
print
(
'
TVM prediction top-1:
'
,
top1
,
synset
[
top1
])
if
run_deploy_local
:
if
run_deploy_local
and
opengl_enabled
:
deploy_local
()
######################################################################
...
...
@@ -412,7 +410,7 @@ def deploy_rpc():
# Print first 10 elements of output.
print
(
out
.
asnumpy
()[
0
][
0
:
10
])
if
run_deploy_rpc
:
if
run_deploy_rpc
and
opengl_enabled
:
deploy_rpc
()
######################################################################
...
...
@@ -501,5 +499,5 @@ def deploy_web():
print
(
"
Please open http://localhost:
"
+
str
(
port
)
+
"
/resnet.html
"
)
httpd
.
serve_forever
()
if
run_deploy_web
:
deploy_web
()
\ No newline at end of file
if
run_deploy_web
and
opengl_enabled
:
deploy_web
()
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