aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/kernels/pad.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-06-21 19:28:33 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-21 19:31:40 -0700
commiteea807c75d6d18f3efc6b988edb8d3c93a48a16c (patch)
tree0d68c4e7b604306eb8d115612ef743b0648d11c4 /tensorflow/contrib/lite/kernels/pad.cc
parent7e510ff7516b163ecd49ba5dd435ff55c345f889 (diff)
Nit: fix typo
PiperOrigin-RevId: 201626601
Diffstat (limited to 'tensorflow/contrib/lite/kernels/pad.cc')
-rw-r--r--tensorflow/contrib/lite/kernels/pad.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/lite/kernels/pad.cc b/tensorflow/contrib/lite/kernels/pad.cc
index 83668cb4ca..4be8c243c1 100644
--- a/tensorflow/contrib/lite/kernels/pad.cc
+++ b/tensorflow/contrib/lite/kernels/pad.cc
@@ -128,7 +128,7 @@ TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
// TODO(nupurgarg): Change kernel implementation to use padding arrays in
// forward order (depth, width, height, batch).
// Build paddings in order of int[] = {batch, height, width, depth} to match
- // kernel implementation of Pad in referenced_ops.h and optimized_ops.h.
+ // kernel implementation of Pad in reference_ops.h and optimized_ops.h.
for (int idx = op_context.dims - 1; idx >= 0; --idx) {
before_padding.push_back(paddings_data[idx * 2]);
after_padding.push_back(paddings_data[idx * 2 + 1]);