aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/kernels/zeros_like.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-09-17 00:39:12 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-17 00:43:03 -0700
commitf1d42c8967410db1e08c0b6d62dc1fc4844165a8 (patch)
tree7999c6d75884790d0e74d9fe3091ea08255f48a8 /tensorflow/contrib/lite/kernels/zeros_like.cc
parent5cf71e75a56a6ec424487492cacde7c9fbc9a5aa (diff)
Implement ZerosLike
PiperOrigin-RevId: 213227615
Diffstat (limited to 'tensorflow/contrib/lite/kernels/zeros_like.cc')
-rw-r--r--tensorflow/contrib/lite/kernels/zeros_like.cc73
1 files changed, 73 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/kernels/zeros_like.cc b/tensorflow/contrib/lite/kernels/zeros_like.cc
new file mode 100644
index 0000000000..cce5240a9b
--- /dev/null
+++ b/tensorflow/contrib/lite/kernels/zeros_like.cc
@@ -0,0 +1,73 @@
+/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+==============================================================================*/
+
+#include "tensorflow/contrib/lite/c/c_api_internal.h"
+#include "tensorflow/contrib/lite/kernels/internal/tensor.h"
+#include "tensorflow/contrib/lite/kernels/kernel_util.h"
+
+namespace tflite {
+namespace ops {
+namespace builtin {
+namespace zeros_like {
+
+constexpr int kInputTensor = 0;
+constexpr int kOutputTensor = 0;
+
+TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) {
+ TF_LITE_ENSURE_EQ(context, NumInputs(node), 1);
+ TF_LITE_ENSURE_EQ(context, NumOutputs(node), 1);
+ const TfLiteTensor* input = GetInput(context, node, kInputTensor);
+ TfLiteTensor* output = GetOutput(context, node, kOutputTensor);
+ output->type = input->type;
+
+ return context->ResizeTensor(context, output,
+ TfLiteIntArrayCopy(input->dims));
+}
+
+TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
+ const TfLiteTensor* input = GetInput(context, node, kInputTensor);
+ TfLiteTensor* output = GetOutput(context, node, kOutputTensor);
+ const int num_elements = NumElements(input);
+ switch (input->type) {
+ case kTfLiteInt64:
+ memset(GetTensorData<int64_t>(output), 0, num_elements * sizeof(int64_t));
+ break;
+ case kTfLiteInt32:
+ memset(GetTensorData<int32_t>(output), 0, num_elements * sizeof(int32_t));
+ break;
+ case kTfLiteFloat32:
+ memset(GetTensorData<float>(output), 0, num_elements * sizeof(float));
+ break;
+ default:
+ context->ReportError(context,
+ "ZerosLike only currently supports int64, int32, "
+ "and float32, got %d.",
+ input->type);
+ return kTfLiteError;
+ }
+ return kTfLiteOk;
+}
+
+} // namespace zeros_like
+
+TfLiteRegistration* Register_ZEROS_LIKE() {
+ static TfLiteRegistration r = {/*init=*/nullptr, /*free=*/nullptr,
+ zeros_like::Prepare, zeros_like::Eval};
+ return &r;
+}
+
+} // namespace builtin
+} // namespace ops
+} // namespace tflite