Fix a minor formatting error in lite/kernels/expand_dims.cc
This commit is contained in:
parent
49e3675367
commit
f73ad89e1a
@ -1,5 +1,3 @@
|
||||
|
||||
#include <stdint.h>
|
||||
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@ -14,6 +12,7 @@ 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 <string.h>
|
||||
|
||||
#include "tensorflow/lite/c/common.h"
|
||||
|
123
tensorflow/lite/micro/kernels/expand_dims.cc
Normal file
123
tensorflow/lite/micro/kernels/expand_dims.cc
Normal file
@ -0,0 +1,123 @@
|
||||
|
||||
#include <stdint.h>
|
||||
/* 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 <string.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 expand_dims {
|
||||
|
||||
// Input indices
|
||||
enum { kInput = 0, kAxis };
|
||||
|
||||
namespace {
|
||||
TfLiteStatus ExpandTensorDim(TfLiteContext* context, const TfLiteTensor& input,
|
||||
int axis, TfLiteTensor* output) {
|
||||
const TfLiteIntArray& input_dims = *input.dims;
|
||||
if (axis < 0) {
|
||||
axis = input_dims.size + 1 + axis;
|
||||
}
|
||||
TF_LITE_ENSURE(context, axis <= input_dims.size);
|
||||
|
||||
TfLiteIntArray* output_dims = TfLiteIntArrayCreate(input_dims.size + 1);
|
||||
for (int i = 0; i < output_dims->size; ++i) {
|
||||
if (i < axis) {
|
||||
output_dims->data[i] = input_dims.data[i];
|
||||
} else if (i == axis) {
|
||||
output_dims->data[i] = 1;
|
||||
} else {
|
||||
output_dims->data[i] = input_dims.data[i - 1];
|
||||
}
|
||||
}
|
||||
|
||||
return context->ResizeTensor(context, output, output_dims);
|
||||
}
|
||||
|
||||
TfLiteStatus GetAxisValueFromTensor(TfLiteContext* context,
|
||||
const TfLiteTensor& axis, int* axis_value) {
|
||||
TF_LITE_ENSURE_EQ(context, NumElements(&axis), 1);
|
||||
switch (axis.type) {
|
||||
case kTfLiteInt32:
|
||||
*axis_value = *GetTensorData<int32_t>(&axis);
|
||||
return kTfLiteOk;
|
||||
case kTfLiteInt64:
|
||||
*axis_value = *GetTensorData<int64_t>(&axis);
|
||||
return kTfLiteOk;
|
||||
default:
|
||||
return kTfLiteError;
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) {
|
||||
TF_LITE_ENSURE_EQ(context, NumInputs(node), 2);
|
||||
TF_LITE_ENSURE_EQ(context, NumOutputs(node), 1);
|
||||
const TfLiteTensor* input;
|
||||
TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kInput, &input));
|
||||
const TfLiteTensor* axis;
|
||||
TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kAxis, &axis));
|
||||
TfLiteTensor* output;
|
||||
TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, 0, &output));
|
||||
output->type = input->type;
|
||||
if (IsConstantTensor(axis)) {
|
||||
int axis_value;
|
||||
TF_LITE_ENSURE_OK(context,
|
||||
GetAxisValueFromTensor(context, *axis, &axis_value));
|
||||
return ExpandTensorDim(context, *input, axis_value, output);
|
||||
}
|
||||
SetTensorToDynamic(output);
|
||||
return kTfLiteOk;
|
||||
}
|
||||
|
||||
TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) {
|
||||
// Just copy input to output.
|
||||
const TfLiteTensor* input;
|
||||
TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kInput, &input));
|
||||
TfLiteTensor* output;
|
||||
TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, 0, &output));
|
||||
const TfLiteTensor* axis;
|
||||
TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kAxis, &axis));
|
||||
if (IsDynamicTensor(output)) {
|
||||
int axis_value;
|
||||
TF_LITE_ENSURE_OK(context,
|
||||
GetAxisValueFromTensor(context, *axis, &axis_value));
|
||||
TF_LITE_ENSURE_OK(context,
|
||||
ExpandTensorDim(context, *input, axis_value, output));
|
||||
}
|
||||
if (output->type == kTfLiteString) {
|
||||
TfLiteTensorRealloc(input->bytes, output);
|
||||
}
|
||||
memcpy(output->data.raw, input->data.raw, input->bytes);
|
||||
return kTfLiteOk;
|
||||
}
|
||||
|
||||
} // namespace expand_dims
|
||||
TfLiteRegistration* Register_EXPAND_DIMS() {
|
||||
static TfLiteRegistration r = {nullptr, nullptr, expand_dims::Prepare,
|
||||
expand_dims::Eval};
|
||||
return &r;
|
||||
}
|
||||
} // namespace builtin
|
||||
} // namespace ops
|
||||
} // namespace tflite
|
Loading…
x
Reference in New Issue
Block a user