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(docs): fix traced module docs warning
GitOrigin-RevId:
a5b790c7b5
release-1.7
Megvii Engine Team
“wenjuan”
3 years ago
parent
fefd4f0928
commit
a8941af0c6
2 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
imperative/python/megengine/traced_module/__init__.py
+1
-1
imperative/python/megengine/traced_module/node.py
+ 2
- 2
imperative/python/megengine/traced_module/__init__.py
View File
@@ -21,10 +21,10 @@ from .traced_module import (
_register_all_builtin_module()
set_cpp_apply_module_trace(cpp_apply_module_trace)
__all__ =
{
__all__ =
[
"register_as_builtin",
"trace_module",
"wrap",
"TracedModule",
"optimize",
}
]
+ 1
- 1
imperative/python/megengine/traced_module/node.py
View File
@@ -222,7 +222,7 @@ class TensorNode(Node):
def __init__(
self,
expr
: "Expr"
,
expr,
name: str = None,
qualname: str = None,
shape: Tuple[int] = None,
Write
Preview
Loading…
Cancel
Save