aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/kernels/neg.cc
diff options
context:
space:
mode:
authorGravatar Alan Chiao <alanchiao@google.com>2018-05-04 10:31:01 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-05-04 10:56:20 -0700
commita5f44b3519627859fb476a9cad1acc354bfa649f (patch)
tree616e06d92971a8452cbb179ece80d569bf244ef8 /tensorflow/contrib/lite/kernels/neg.cc
parent3db0e545d2460be0392dfcaa304231cd2105648e (diff)
Implement neg op
PiperOrigin-RevId: 195435079
Diffstat (limited to 'tensorflow/contrib/lite/kernels/neg.cc')
-rw-r--r--tensorflow/contrib/lite/kernels/neg.cc79
1 files changed, 79 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/kernels/neg.cc b/tensorflow/contrib/lite/kernels/neg.cc
new file mode 100644
index 0000000000..692da81727
--- /dev/null
+++ b/tensorflow/contrib/lite/kernels/neg.cc
@@ -0,0 +1,79 @@
+/* Copyright 2018 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/context.h"
+#include "tensorflow/contrib/lite/kernels/kernel_util.h"
+
+namespace tflite {
+namespace ops {
+namespace builtin {
+namespace neg {
+
+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);
+ TfLiteTensor* input = GetInput(context, node, kInputTensor);
+ TfLiteTensor* output = GetOutput(context, node, kOutputTensor);
+
+ output->type = input->type;
+ return context->ResizeTensor(context, output,
+ TfLiteIntArrayCopy(input->dims));
+}
+
+template <typename T>
+void Negate(const T* in_data, int num_elements, T* out_data) {
+ // TODO(alanchiao): add vectorized version.
+ for (int i = 0; i < num_elements; ++i) {
+ out_data[i] = -in_data[i];
+ }
+}
+
+TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
+ TfLiteTensor* input = GetInput(context, node, kInputTensor);
+ TfLiteTensor* output = GetOutput(context, node, kOutputTensor);
+ const int num_elements = NumElements(input);
+ switch (input->type) {
+ case kTfLiteInt64:
+ Negate(input->data.i64, num_elements, output->data.i64);
+ break;
+ case kTfLiteInt32:
+ Negate(input->data.i32, num_elements, output->data.i32);
+ break;
+ case kTfLiteFloat32:
+ Negate(input->data.f, num_elements, output->data.f);
+ break;
+ default:
+ context->ReportError(
+ context, "Neg only currently supports int64, int32, and float32.",
+ input->type);
+ return kTfLiteError;
+ }
+ return kTfLiteOk;
+}
+
+} // namespace neg
+
+TfLiteRegistration* Register_NEG() {
+ static TfLiteRegistration r = {/*init=*/nullptr, /*free=*/nullptr,
+ neg::Prepare, neg::Eval};
+ return &r;
+}
+
+} // namespace builtin
+} // namespace ops
+} // namespace tflite