This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
Repositories
Datasets
Forum
实训
竞赛
大数据
应用
Register
Sign In
OpenI
/
MegEngine
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
31
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
fix(mge/dump): fix dump device error with const
GitOrigin-RevId:
9dd8321fd7
release-1.5
Megvii Engine Team
3 years ago
parent
2c4ff5431b
commit
d16c5caf6b
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
imperative/python/megengine/jit/tracing.py
+ 1
- 1
imperative/python/megengine/jit/tracing.py
View File
@@ -837,7 +837,7 @@ class trace:
h2v[h] = graph.make_const(
h2v[h] = graph.make_const(
info.bound_data.numpy(),
info.bound_data.numpy(),
dtype=info.dtype,
dtype=info.dtype,
device=
info.device
,
device=
dumped_device(info)
,
name=info.name,
name=info.name,
)
)
continue
continue
Write
Preview
Loading…
Cancel
Save