Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
format annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
mavenlin committed Aug 21, 2015
1 parent 32a04c3 commit ec1a11f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/symbol/symbol.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* Copyright (c) 2015 by Contributors
*\file symbol.cc
*\brief symbol of mxnet
* Copyright (c) 2015 by Contributors
* \file symbol.cc
* \brief symbol of mxnet
*/
#include <dmlc/logging.h>
#include <mxnet/symbolic.h>
Expand All @@ -12,13 +12,13 @@

namespace mxnet {
/*!
*\brief Node is represents node of an operator in the symbolic graph.
* \brief Node is represents node of an operator in the symbolic graph.
*
*It stores connection to the inputs to function represented by OperatorProperty
*NOTE on data structure: there are three types of node:
*- Normal node: contains all the necessary elements of a graph.
*- OperatorProperty: the inputs_ is empty, represents an OperatorProperty that has not been applied.
*- Variable: the sym_ is nullptr, represents an named Variable of tensors that can be composed.
* It stores connection to the inputs to function represented by OperatorProperty
* NOTE on data structure: there are three types of node:
* - Normal node: contains all the necessary elements of a graph.
* - OperatorProperty: the inputs_ is empty, represents an OperatorProperty that has not been applied.
* - Variable: the sym_ is nullptr, represents an named Variable of tensors that can be composed.
*/
struct Symbol::Node {
/*! \brief Operator of this node */
Expand Down

0 comments on commit ec1a11f

Please sign in to comment.