As part of ongoing refactoring, `tflite::GetInput`, `tflite::GetOutput`, `tflite::GetTemporary` and `tflite::GetIntermediates` will return `nullptr` in some cases. Hence, we insert the `nullptr` checks on all usages. We also insert `nullptr` checks on usages of `tflite::GetVariableInput` and `tflite::GetOptionalInputTensor` but only in the cases where there is no obvious check that `nullptr` is acceptable (that is, we only insert the check for the output of these two functions if the tensor is accessed as if it is always not `nullptr`). PiperOrigin-RevId: 332521299 Change-Id: I29af455bcb48d0b92e58132d951a3badbd772d56
103 lines
3.8 KiB
C++
103 lines
3.8 KiB
C++
/* 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 <stdint.h>
|
|
|
|
#include "tensorflow/lite/c/common.h"
|
|
#include "tensorflow/lite/kernels/internal/reference/reference_ops.h"
|
|
#include "tensorflow/lite/kernels/internal/tensor.h"
|
|
#include "tensorflow/lite/kernels/internal/tensor_ctypes.h"
|
|
#include "tensorflow/lite/kernels/kernel_util.h"
|
|
|
|
namespace tflite {
|
|
namespace ops {
|
|
namespace builtin {
|
|
namespace add_n {
|
|
|
|
constexpr int kInputTensor1 = 0;
|
|
constexpr int kOutputTensor = 0;
|
|
|
|
TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) {
|
|
int num_inputs = NumInputs(node);
|
|
TF_LITE_ENSURE(context, num_inputs >= 2);
|
|
TF_LITE_ENSURE_EQ(context, NumOutputs(node), 1);
|
|
|
|
const TfLiteTensor* input1;
|
|
TF_LITE_ENSURE_OK(context,
|
|
GetInputSafe(context, node, kInputTensor1, &input1));
|
|
TfLiteTensor* output;
|
|
TF_LITE_ENSURE_OK(context,
|
|
GetOutputSafe(context, node, kOutputTensor, &output));
|
|
output->type = input1->type;
|
|
|
|
// Check that all input tensors have the same shape and type.
|
|
for (int i = kInputTensor1 + 1; i < num_inputs; ++i) {
|
|
const TfLiteTensor* input;
|
|
TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, i, &input));
|
|
TF_LITE_ENSURE(context, HaveSameShapes(input1, input));
|
|
TF_LITE_ENSURE_TYPES_EQ(context, input1->type, input->type);
|
|
}
|
|
|
|
// Use the first input node's dimension to be the dimension of the output
|
|
// node.
|
|
TfLiteIntArray* input1_dims = input1->dims;
|
|
TfLiteIntArray* output_dims = TfLiteIntArrayCopy(input1_dims);
|
|
return context->ResizeTensor(context, output, output_dims);
|
|
}
|
|
|
|
template <typename T>
|
|
void EvalAddN(TfLiteContext* context, TfLiteNode* node) {
|
|
// TODO(haoliang): Initialize all_inputs only once during init.
|
|
VectorOfTensors<T> all_inputs(*context, *node->inputs);
|
|
// Safe to use unchecked since caller checks that tensor is valid
|
|
TfLiteTensor* output = GetOutput(context, node, kOutputTensor);
|
|
int num_inputs = NumInputs(node);
|
|
// Safe to use unchecked since caller checks that tensor is valid
|
|
const TfLiteTensor* input1 = GetInput(context, node, kInputTensor1);
|
|
reference_ops::AddN<T>(GetTensorShape(input1), num_inputs, all_inputs.data(),
|
|
GetTensorData<T>(output));
|
|
}
|
|
|
|
TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
|
|
const TfLiteTensor* input1;
|
|
TF_LITE_ENSURE_OK(context,
|
|
GetInputSafe(context, node, kInputTensor1, &input1));
|
|
TfLiteTensor* output;
|
|
TF_LITE_ENSURE_OK(context,
|
|
GetOutputSafe(context, node, kOutputTensor, &output));
|
|
if (output->type == kTfLiteFloat32) {
|
|
EvalAddN<float>(context, node);
|
|
} else if (output->type == kTfLiteInt32) {
|
|
EvalAddN<int32_t>(context, node);
|
|
} else {
|
|
context->ReportError(context,
|
|
"AddN only supports FLOAT32|INT32 now, got %s.",
|
|
TfLiteTypeGetName(output->type));
|
|
return kTfLiteError;
|
|
}
|
|
return kTfLiteOk;
|
|
}
|
|
|
|
} // namespace add_n
|
|
|
|
TfLiteRegistration* Register_ADD_N() {
|
|
static TfLiteRegistration r = {/*init*/ nullptr, /*free*/ nullptr,
|
|
add_n::Prepare, add_n::Eval};
|
|
return &r;
|
|
}
|
|
|
|
} // namespace builtin
|
|
} // namespace ops
|
|
} // namespace tflite
|