From 3849a1b682717226ce011718ea382be9a24b4b0c Mon Sep 17 00:00:00 2001 From: manhyuk Date: Sun, 30 Dec 2018 15:33:29 +0900 Subject: [PATCH 1/2] fix typo --- tensorflow/core/framework/model.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/core/framework/model.h b/tensorflow/core/framework/model.h index bb1d7b6bff8..d9f71853629 100644 --- a/tensorflow/core/framework/model.h +++ b/tensorflow/core/framework/model.h @@ -310,7 +310,7 @@ class Node { std::map> parameters_ GUARDED_BY(mu_); std::list> 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_; }; From a97dbfcf9b727a9eeec81e4a19ecf56a36e84a0c Mon Sep 17 00:00:00 2001 From: manhyuk Date: Sun, 30 Dec 2018 15:33:39 +0900 Subject: [PATCH 2/2] fix typo --- tensorflow/core/kernels/cudnn_rnn_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/core/kernels/cudnn_rnn_ops.cc b/tensorflow/core/kernels/cudnn_rnn_ops.cc index d37f5fb9dae..196494cbcf8 100644 --- a/tensorflow/core/kernels/cudnn_rnn_ops.cc +++ b/tensorflow/core/kernels/cudnn_rnn_ops.cc @@ -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,