Commit 70cf8f28 authored by Adam Rogowiec's avatar Adam Rogowiec Committed by Scott Cyphers

Rephrase comments to be tense consisten. (#2995)

parent a073c39e
...@@ -29,7 +29,7 @@ namespace ngraph ...@@ -29,7 +29,7 @@ namespace ngraph
{ {
/// \brief Change shape of input tensor. /// \brief Change shape of input tensor.
/// ///
/// \param[in] node The node which shape will be used as input to Reshape. /// \param[in] node The node producing the tensor to be reshaped.
/// \param[in] shape The new shape for input tensor. /// \param[in] shape The new shape for input tensor.
/// ///
/// \return The node representing a Reshape operation. /// \return The node representing a Reshape operation.
...@@ -57,7 +57,7 @@ namespace ngraph ...@@ -57,7 +57,7 @@ namespace ngraph
/// \param node The tensor to be flattened. /// \param node The tensor to be flattened.
/// \param axis The axis dividing shape. /// \param axis The axis dividing shape.
/// ///
/// \return The new node being a 2D matrix representing flattened input node. /// \return The new node will be a 2D matrix representing the flattened input node.
std::shared_ptr<Node> flatten(const std::shared_ptr<Node>& node, int axis); std::shared_ptr<Node> flatten(const std::shared_ptr<Node>& node, int axis);
} // namespace builder } // namespace builder
} // namespace ngraph } // namespace ngraph
...@@ -32,7 +32,7 @@ namespace ngraph ...@@ -32,7 +32,7 @@ namespace ngraph
{ {
/// \brief Change shape of input tensor. /// \brief Change shape of input tensor.
/// ///
/// \param[in] node The node which shape will be used as input to Reshape. /// \param[in] node The node producing the tensor to be reshaped.
/// \param[in] shape The new shape for input tensor. /// \param[in] shape The new shape for input tensor.
/// ///
/// \return The node representing a Reshape operation. /// \return The node representing a Reshape operation.
...@@ -70,7 +70,7 @@ namespace ngraph ...@@ -70,7 +70,7 @@ namespace ngraph
/// \param node The tensor to be flattened. /// \param node The tensor to be flattened.
/// \param axis The axis dividing shape. /// \param axis The axis dividing shape.
/// ///
/// \return The new node being a 2D matrix representing flattened input node. /// \return The new node will be a 2D matrix representing the flattened input node.
std::shared_ptr<ngraph::Node> flatten(const std::shared_ptr<ngraph::Node>& node, std::shared_ptr<ngraph::Node> flatten(const std::shared_ptr<ngraph::Node>& node,
int axis) int axis)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment