Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
d5f7224d
Commit
d5f7224d
authored
Apr 16, 2019
by
Pedro Larroy
Committed by
Tianqi Chen
Apr 16, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update dmlc-core, fix default ctors of NodeEntry (#3017)
parent
fcc5b422
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
3rdparty/dmlc-core
+1
-1
nnvm/include/nnvm/node.h
+11
-1
No files found.
dmlc-core
@
3ffea869
Subproject commit
2b5b1ba9c1103f438d164aca32da7cffd8cd48e8
Subproject commit
3ffea8694adf9c0363f9abbf162dc0e4a45b22c5
nnvm/include/nnvm/node.h
View file @
d5f7224d
...
@@ -56,8 +56,18 @@ struct NodeEntry {
...
@@ -56,8 +56,18 @@ struct NodeEntry {
version
(
version
)
version
(
version
)
{}
{}
explicit
NodeEntry
(
NodePtr
node
)
:
node
(
std
::
move
(
node
)),
index
(),
version
()
{}
/**
* MXNet assumes that a node with a null ptr doesn't have a gradient attached. Don't change this
* constructor.
*/
NodeEntry
()
:
NodeEntry
()
:
node
(),
node
(
nullptr
),
index
(),
index
(),
version
()
version
()
{}
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment