| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /* Copyright 2019 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/lite/c/common.h"
- #include "tensorflow/lite/kernels/internal/reference/binary_function.h"
- #include "tensorflow/lite/kernels/internal/tensor_ctypes.h"
- #include "tensorflow/lite/kernels/kernel_util.h"
- #include "tensorflow/lite/kernels/op_macros.h"
- namespace tflite {
- namespace ops {
- namespace micro {
- namespace logical {
- namespace {
- // Input/output tensor index.
- constexpr int kInputTensor1 = 0;
- constexpr int kInputTensor2 = 1;
- constexpr int kOutputTensor = 0;
- TfLiteStatus LogicalImpl(TfLiteContext* context, TfLiteNode* node,
- bool (*func)(bool, bool)) {
- const TfLiteTensor* input1 = GetInput(context, node, kInputTensor1);
- const TfLiteTensor* input2 = GetInput(context, node, kInputTensor2);
- TfLiteTensor* output = GetOutput(context, node, kOutputTensor);
- if (HaveSameShapes(input1, input2)) {
- reference_ops::BinaryFunction<bool, bool, bool>(
- GetTensorShape(input1), GetTensorData<bool>(input1),
- GetTensorShape(input2), GetTensorData<bool>(input2),
- GetTensorShape(output), GetTensorData<bool>(output), func);
- } else {
- reference_ops::BroadcastBinaryFunction4DSlow<bool, bool, bool>(
- GetTensorShape(input1), GetTensorData<bool>(input1),
- GetTensorShape(input2), GetTensorData<bool>(input2),
- GetTensorShape(output), GetTensorData<bool>(output), func);
- }
- return kTfLiteOk;
- }
- bool LogicalOr(bool x, bool y) { return x || y; }
- TfLiteStatus LogicalOrEval(TfLiteContext* context, TfLiteNode* node) {
- return LogicalImpl(context, node, LogicalOr);
- }
- bool LogicalAnd(bool x, bool y) { return x && y; }
- TfLiteStatus LogicalAndEval(TfLiteContext* context, TfLiteNode* node) {
- return LogicalImpl(context, node, LogicalAnd);
- }
- } // namespace
- } // namespace logical
- TfLiteRegistration* Register_LOGICAL_OR() {
- // Init, Free, Prepare, Eval are satisfying the Interface required by
- // TfLiteRegistration.
- static TfLiteRegistration r = {/*init=*/nullptr,
- /*free=*/nullptr,
- /*prepare=*/nullptr,
- /*invoke=*/logical::LogicalOrEval,
- /*profiling_string=*/nullptr,
- /*builtin_code=*/0,
- /*custom_name=*/nullptr,
- /*version=*/0};
- return &r;
- }
- TfLiteRegistration* Register_LOGICAL_AND() {
- // Init, Free, Prepare, Eval are satisfying the Interface required by
- // TfLiteRegistration.
- static TfLiteRegistration r = {/*init=*/nullptr,
- /*free=*/nullptr,
- /*prepare=*/nullptr,
- /*invoke=*/logical::LogicalAndEval,
- /*profiling_string=*/nullptr,
- /*builtin_code=*/0,
- /*custom_name=*/nullptr,
- /*version=*/0};
- return &r;
- }
- } // namespace micro
- } // namespace ops
- } // namespace tflite
|