Skip to content
This repository has been archived by the owner on Feb 1, 2020. It is now read-only.

Commit

Permalink
test.
Browse files Browse the repository at this point in the history
  • Loading branch information
zheng-da committed May 18, 2018
1 parent 9636c9b commit 3cbda39
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/nnvm/node.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,6 @@ struct NodeAttrs {
std::string name;
/*! \brief The dictionary representation of attributes */
std::unordered_map<std::string, std::string> dict;
/*!
* \brief A parsed version of attributes,
* This is generated if OpProperty.attr_parser is registered.
* The object can be used to quickly access attributes.
*/
any parsed;
/*!
* \brief Some operators take graphs as input. These operators include
* control flow operators and high-order functions.
Expand All @@ -99,6 +93,12 @@ struct NodeAttrs {
* the parameters and show be kept as node attributes.
*/
std::vector<std::shared_ptr<Symbol> > subgraphs;
/*!
* \brief A parsed version of attributes,
* This is generated if OpProperty.attr_parser is registered.
* The object can be used to quickly access attributes.
*/
any parsed;
};

/*!
Expand Down

0 comments on commit 3cbda39

Please sign in to comment.