aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/mkl_identity_op.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/kernels/mkl_identity_op.cc')
-rw-r--r--tensorflow/core/kernels/mkl_identity_op.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/core/kernels/mkl_identity_op.cc b/tensorflow/core/kernels/mkl_identity_op.cc
index ca20294a26..f31e7afd46 100644
--- a/tensorflow/core/kernels/mkl_identity_op.cc
+++ b/tensorflow/core/kernels/mkl_identity_op.cc
@@ -41,9 +41,9 @@ class MklIdentityOp : public OpKernel {
bool input_in_mkl_format = mkl_shape_input.IsMklTensor();
if (input_in_mkl_format) {
- ForwarMklTensorInToOut(context, 0, 0);
+ ForwardMklTensorInToOut(context, 0, 0);
} else {
- FowardTfTensorInToOut(context, 0, 0);
+ ForwardTfTensorInToOut(context, 0, 0);
}
}