STT-tensorflow/tensorflow/lite/kernels/if.cc
Mihai Maruseac 1970c2158b [tflite]: Insert nullptr checks when obtaining tensors.
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
2020-09-18 14:13:50 -07:00

215 lines
8.2 KiB
C++

/* 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 <stddef.h>
#include <cstring>
#include <memory>
#include <vector>
#include "tensorflow/lite/c/builtin_op_data.h"
#include "tensorflow/lite/c/common.h"
#include "tensorflow/lite/core/subgraph.h"
#include "tensorflow/lite/kernels/internal/compatibility.h"
#include "tensorflow/lite/kernels/kernel_util.h"
namespace tflite {
namespace ops {
namespace builtin {
namespace if_kernel {
struct OpData {
int then_subgraph_index;
int else_subgraph_index;
};
void* Init(TfLiteContext* context, const char* buffer, size_t length) {
auto* op_data = new OpData;
const auto* params = reinterpret_cast<const TfLiteIfParams*>(buffer);
op_data->then_subgraph_index = params->then_subgraph_index;
op_data->else_subgraph_index = params->else_subgraph_index;
return op_data;
}
void Free(TfLiteContext* context, void* buffer) {
delete reinterpret_cast<OpData*>(buffer);
}
TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) {
const OpData* op_data = reinterpret_cast<OpData*>(node->user_data);
TF_LITE_ENSURE(context, node->inputs->size > 0);
// The first input is the condition.
const TfLiteTensor* cond;
TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, 0, &cond));
// Currently only bool is supported.
// TODO(ycling): Support other types since TensorFlow also support
// non-bool types as condition.
TF_LITE_ENSURE_EQ(context, cond->type, kTfLiteBool);
TF_LITE_ENSURE_EQ(context, NumElements(cond), 1);
// The first input of the node is the condition. The rest of inputs are
// passed to the branch subgraphs. Therefore, the number of subgraph inputs
// will be the number of node inputs - 1.
int num_inputs = node->inputs->size - 1;
int num_outputs = node->outputs->size;
Subgraph* this_subgraph = reinterpret_cast<Subgraph*>(context->impl_);
auto* subgraphs = this_subgraph->GetSubgraphs();
TF_LITE_ENSURE(context, op_data->then_subgraph_index < subgraphs->size());
TF_LITE_ENSURE(context, op_data->else_subgraph_index < subgraphs->size());
Subgraph* then_subgraph = (*subgraphs)[op_data->then_subgraph_index].get();
Subgraph* else_subgraph = (*subgraphs)[op_data->else_subgraph_index].get();
for (auto* subgraph : {then_subgraph, else_subgraph}) {
TF_LITE_ENSURE_EQ(context, num_inputs, subgraph->inputs().size());
TF_LITE_ENSURE_EQ(context, num_outputs, subgraph->outputs().size());
}
bool has_dynamic_output_tensors = false;
for (auto* subgraph : {then_subgraph, else_subgraph}) {
for (int i = 0; i < num_inputs; ++i) {
// The first input of the node is the condition. The indices of the inputs
// passed to the subgraphs are offset by 1.
const TfLiteTensor* input;
TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, i + 1, &input));
std::vector<int> dims(input->dims->data,
input->dims->data + input->dims->size);
subgraph->ResizeInputTensor(i, dims);
TfLiteTensor* subgraph_input = subgraph->tensor(subgraph->inputs()[i]);
TF_LITE_ENSURE_TYPES_EQ(context, input->type, subgraph_input->type);
}
// Note: The `Prepare` function is responsible to run `AllocateTensors` on
// both subgraphs. It's intentionally not to break out of the loop when
// finding a dynamic output tensor.
TF_LITE_ENSURE_OK(context, subgraph->AllocateTensors());
has_dynamic_output_tensors |= subgraph->HasDynamicTensors();
}
if (!has_dynamic_output_tensors) {
for (int i = 0; i < num_outputs; ++i) {
TfLiteTensor* then_output =
then_subgraph->tensor(then_subgraph->outputs()[i]);
TfLiteTensor* else_output =
else_subgraph->tensor(else_subgraph->outputs()[i]);
// If the 2 subgraphs have static but different output shapes, the output
// tensors of the IF op have dynamic sizes.
if (!TfLiteIntArrayEqual(then_output->dims, else_output->dims)) {
has_dynamic_output_tensors = true;
break;
}
}
}
for (int i = 0; i < num_outputs; ++i) {
TfLiteTensor* output;
TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, i, &output));
if (has_dynamic_output_tensors) {
SetTensorToDynamic(output);
} else {
// When there's no dynamic output tensors, the 2 subgraph has exactly
// the same static sized outputs.
TfLiteTensor* then_output =
then_subgraph->tensor(then_subgraph->outputs()[i]);
TfLiteIntArray* output_size = TfLiteIntArrayCopy(then_output->dims);
TF_LITE_ENSURE_OK(context,
context->ResizeTensor(context, output, output_size));
}
}
return kTfLiteOk;
}
TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
const OpData* op_data = reinterpret_cast<OpData*>(node->user_data);
const TfLiteTensor* cond;
TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, 0, &cond));
bool cond_value = cond->data.b[0];
Subgraph* this_subgraph = reinterpret_cast<Subgraph*>(context->impl_);
auto* subgraphs = this_subgraph->GetSubgraphs();
// Currently we copy the input / output between the subgraphs. This isn't
// optimized yet.
// TODO(b/120234921): Optimize and avoid copying tensors between subgraphs.
int active_branch_subgraph_index =
cond_value ? op_data->then_subgraph_index : op_data->else_subgraph_index;
Subgraph& active_branch_subgraph =
*(*subgraphs)[active_branch_subgraph_index];
for (int i = 0; i < active_branch_subgraph.inputs().size(); ++i) {
const TfLiteTensor* input;
TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, i + 1, &input));
TfLiteTensor* subgraph_input =
active_branch_subgraph.tensor(active_branch_subgraph.inputs()[i]);
TF_LITE_ENSURE_EQ(context, input->bytes, subgraph_input->bytes);
memcpy(subgraph_input->data.raw, input->data.raw, input->bytes);
}
// Note: It's guaranteed that the subgraphs' `AllocateTensors` are called
// in `Prepare`, so we don't need to do it here again.
TF_LITE_ENSURE_OK(context, active_branch_subgraph.Invoke());
for (int tensor_index : active_branch_subgraph.outputs()) {
active_branch_subgraph.EnsureTensorDataIsReadable(tensor_index);
}
bool has_dynamic_output_tensors = false;
for (int i = 0; i < node->outputs->size; ++i) {
TfLiteTensor* output;
TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, i, &output));
if (IsDynamicTensor(output)) {
has_dynamic_output_tensors = true;
break;
}
}
if (has_dynamic_output_tensors) {
for (int i = 0; i < node->outputs->size; ++i) {
TfLiteTensor* output;
TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, i, &output));
TfLiteTensor* subgraph_output =
active_branch_subgraph.tensor(active_branch_subgraph.outputs()[i]);
TfLiteIntArray* output_size = TfLiteIntArrayCopy(subgraph_output->dims);
TF_LITE_ENSURE_OK(context,
context->ResizeTensor(context, output, output_size));
}
}
for (int i = 0; i < active_branch_subgraph.outputs().size(); ++i) {
const TfLiteTensor* subgraph_output =
active_branch_subgraph.tensor(active_branch_subgraph.outputs()[i]);
TfLiteTensor* output;
TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, i, &output));
TF_LITE_ENSURE_EQ(context, output->bytes, subgraph_output->bytes);
memcpy(output->data.raw, subgraph_output->data.raw, output->bytes);
}
return kTfLiteOk;
}
} // namespace if_kernel
TfLiteRegistration* Register_IF() {
static TfLiteRegistration r = {if_kernel::Init, if_kernel::Free,
if_kernel::Prepare, if_kernel::Eval};
return &r;
}
} // namespace builtin
} // namespace ops
} // namespace tflite