Merge pull request #24628 from ManHyuk:fix_typo
PiperOrigin-RevId: 227579547
This commit is contained in:
commit
170ffc3b1a
@ -310,7 +310,7 @@ class Node {
|
|||||||
std::map<string, std::shared_ptr<Parameter>> parameters_ GUARDED_BY(mu_);
|
std::map<string, std::shared_ptr<Parameter>> parameters_ GUARDED_BY(mu_);
|
||||||
std::list<std::shared_ptr<Node>> inputs_ 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 results in recursive deletion of the subtree rooted in the node.
|
||||||
Node* const output_;
|
Node* const output_;
|
||||||
};
|
};
|
||||||
|
@ -743,7 +743,7 @@ Status DoBackward(
|
|||||||
/* forward inputs */
|
/* forward inputs */
|
||||||
const Tensor* input, const Tensor* input_h, const Tensor* input_c,
|
const Tensor* input, const Tensor* input_h, const Tensor* input_c,
|
||||||
const Tensor* params,
|
const Tensor* params,
|
||||||
/* forward outptus */
|
/* forward outputs */
|
||||||
const Tensor* output, const Tensor* output_h, const Tensor* output_c,
|
const Tensor* output, const Tensor* output_h, const Tensor* output_c,
|
||||||
/* backprop inputs */
|
/* backprop inputs */
|
||||||
const Tensor* output_backprop, const Tensor* output_h_backprop,
|
const Tensor* output_backprop, const Tensor* output_h_backprop,
|
||||||
|
Loading…
Reference in New Issue
Block a user