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
02141d4a
Commit
02141d4a
authored
7 years ago
by
ziheng
Committed by
Tianqi Chen
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[SYMBOL] Add __iter__ and GetChildren for symbol (#268)
* [SYMBOL] Add __iter__ and GetChildren for symbol * [SYMBOL] Fix lint
parent
a0dc8655
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
nnvm/include/nnvm/c_api.h
+8
-0
8 additions, 0 deletions
nnvm/include/nnvm/c_api.h
nnvm/python/nnvm/symbol.py
+14
-0
14 additions, 0 deletions
nnvm/python/nnvm/symbol.py
nnvm/src/c_api/c_api_symbolic.cc
+9
-0
9 additions, 0 deletions
nnvm/src/c_api/c_api_symbolic.cc
with
31 additions
and
0 deletions
nnvm/include/nnvm/c_api.h
+
8
−
0
View file @
02141d4a
...
...
@@ -266,6 +266,14 @@ NNVM_DLL int NNSymbolGetNumOutputs(SymbolHandle symbol,
*/
NNVM_DLL
int
NNSymbolGetInternals
(
SymbolHandle
symbol
,
SymbolHandle
*
out
);
/*!
* \brief Get a symbol that contains only direct children.
* \param symbol The symbol
* \param out The output symbol whose outputs are the direct children.
* \return 0 when success, -1 when failure happens
*/
NNVM_DLL
int
NNSymbolGetChildren
(
SymbolHandle
symbol
,
SymbolHandle
*
out
);
/*!
* \brief Get index-th outputs of the symbol.
* \param symbol The symbol
...
...
This diff is collapsed.
Click to expand it.
nnvm/python/nnvm/symbol.py
+
14
−
0
View file @
02141d4a
...
...
@@ -143,6 +143,9 @@ class Symbol(SymbolBase):
self
.
handle
,
_base
.
nn_uint
(
index
),
_ctypes
.
byref
(
handle
)))
return
Symbol
(
handle
=
handle
)
def
__iter__
(
self
):
return
(
self
[
i
]
for
i
in
self
.
list_output_names
())
def
attr
(
self
,
key
):
"""
Get attribute string from the symbol, this function only works for non-grouped symbol.
...
...
@@ -196,6 +199,17 @@ class Symbol(SymbolBase):
self
.
handle
,
_ctypes
.
byref
(
handle
)))
return
Symbol
(
handle
=
handle
)
def
get_children
(
self
):
"""
Gets a new grouped symbol whose output contains
inputs to output nodes of the original symbol.
"""
handle
=
_base
.
SymbolHandle
()
_check_call
(
_LIB
.
NNSymbolGetChildren
(
self
.
handle
,
_ctypes
.
byref
(
handle
)))
ret
=
Symbol
(
handle
=
handle
)
if
not
ret
.
list_output_names
():
return
None
return
ret
def
_get_list_copt
(
self
,
option
):
"""
internal function to get list option
"""
if
option
==
'
all
'
:
...
...
This diff is collapsed.
Click to expand it.
nnvm/src/c_api/c_api_symbolic.cc
+
9
−
0
View file @
02141d4a
...
...
@@ -141,6 +141,15 @@ int NNSymbolGetInternals(SymbolHandle symbol,
API_END_HANDLE_ERROR
(
delete
s
);
}
int
NNSymbolGetChildren
(
SymbolHandle
symbol
,
SymbolHandle
*
out
)
{
Symbol
*
s
=
new
Symbol
();
API_BEGIN
();
*
s
=
static_cast
<
Symbol
*>
(
symbol
)
->
GetChildren
();
*
out
=
s
;
API_END_HANDLE_ERROR
(
delete
s
);
}
int
NNSymbolFree
(
SymbolHandle
symbol
)
{
API_BEGIN
();
delete
static_cast
<
Symbol
*>
(
symbol
);
...
...
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