Merge pull request #24628 from ManHyuk:fix_typo

PiperOrigin-RevId: 227579547
This commit is contained in:
TensorFlower Gardener 2019-01-02 14:28:18 -08:00
commit 170ffc3b1a
2 changed files with 2 additions and 2 deletions

View File

@ -310,7 +310,7 @@ class Node {
std::map<string, std::shared_ptr<Parameter>> parameters_ GUARDED_BY(mu_);
std::list<std::shared_ptr<Node>> inputs_ GUARDED_BY(mu_);
// The reference to the output node is not owned so that that deletion of a
// The reference to the output node is not owned so that deletion of a
// node results in recursive deletion of the subtree rooted in the node.
Node* const output_;
};

View File

@ -743,7 +743,7 @@ Status DoBackward(
/* forward inputs */
const Tensor* input, const Tensor* input_h, const Tensor* input_c,
const Tensor* params,
/* forward outptus */
/* forward outputs */
const Tensor* output, const Tensor* output_h, const Tensor* output_c,
/* backprop inputs */
const Tensor* output_backprop, const Tensor* output_h_backprop,