| /* Copyright 2021 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/kernels/internal/reference/space_to_batch_nd.h" |
| |
| #include "tensorflow/lite/c/common.h" |
| #include "tensorflow/lite/kernels/internal/tensor_ctypes.h" |
| #include "tensorflow/lite/kernels/internal/types.h" |
| #include "tensorflow/lite/kernels/kernel_util.h" |
| #include "tensorflow/lite/micro/kernels/kernel_util.h" |
| #include "tensorflow/lite/micro/micro_log.h" |
| #include "tensorflow/lite/micro/micro_utils.h" |
| |
| namespace tflite { |
| |
| namespace { |
| |
| constexpr int kInputTensor = 0; |
| constexpr int kBlockShapeTensor = 1; |
| constexpr int kCropsTensor = 2; |
| constexpr int kOutputTensor = 0; |
| |
| // Currently, only 3D NHC and 4D NHWC input/output op_context are supported. |
| // In case of 3D input, it will be extended to 3D NHWC by adding W=1. |
| // The 4D array need to have exactly 2 spatial dimensions. |
| // TODO(b/149952582): Support arbitrary dimension in SpaceToBatchND. |
| const int kInputOutputMinDimensionNum = 3; |
| const int kInputOutputMaxDimensionNum = 4; |
| |
| void* Init(TfLiteContext* context, const char* buffer, size_t length) { |
| TFLITE_DCHECK(context->AllocatePersistentBuffer != nullptr); |
| return context->AllocatePersistentBuffer(context, sizeof(SpaceToBatchParams)); |
| } |
| |
| TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { |
| MicroContext* micro_context = GetMicroContext(context); |
| |
| TF_LITE_ENSURE_EQ(context, NumInputs(node), 3); |
| TF_LITE_ENSURE_EQ(context, NumOutputs(node), 1); |
| |
| TfLiteTensor* input = |
| micro_context->AllocateTempInputTensor(node, kInputTensor); |
| TfLiteTensor* output = |
| micro_context->AllocateTempOutputTensor(node, kOutputTensor); |
| TF_LITE_ENSURE(context, input != nullptr && output != nullptr); |
| |
| TF_LITE_ENSURE(context, NumDimensions(input) >= kInputOutputMinDimensionNum); |
| TF_LITE_ENSURE(context, NumDimensions(output) >= kInputOutputMinDimensionNum); |
| TF_LITE_ENSURE(context, NumDimensions(input) <= kInputOutputMaxDimensionNum); |
| TF_LITE_ENSURE(context, NumDimensions(output) <= kInputOutputMaxDimensionNum); |
| TF_LITE_ENSURE_TYPES_EQ(context, input->type, output->type); |
| |
| micro_context->DeallocateTempTfLiteTensor(input); |
| micro_context->DeallocateTempTfLiteTensor(output); |
| return kTfLiteOk; |
| } |
| |
| TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { |
| TFLITE_DCHECK(node->user_data != nullptr); |
| const SpaceToBatchParams& params = |
| *(static_cast<const SpaceToBatchParams*>(node->user_data)); |
| |
| const TfLiteEvalTensor* input = |
| tflite::micro::GetEvalInput(context, node, kInputTensor); |
| const TfLiteEvalTensor* block_shape = |
| tflite::micro::GetEvalInput(context, node, kBlockShapeTensor); |
| const TfLiteEvalTensor* crops = |
| tflite::micro::GetEvalInput(context, node, kCropsTensor); |
| TfLiteEvalTensor* output = |
| tflite::micro::GetEvalOutput(context, node, kOutputTensor); |
| |
| switch (input->type) { // Already know in/out types are same. |
| case kTfLiteFloat32: |
| reference_ops::SpaceToBatchND( |
| params, tflite::micro::GetTensorShape(input), |
| tflite::micro::GetTensorData<float>(input), |
| tflite::micro::GetTensorShape(block_shape), |
| tflite::micro::GetTensorData<int32_t>(block_shape), |
| tflite::micro::GetTensorShape(crops), |
| tflite::micro::GetTensorData<int32_t>(crops), |
| tflite::micro::GetTensorShape(output), |
| tflite::micro::GetTensorData<float>(output)); |
| break; |
| case kTfLiteInt8: |
| reference_ops::SpaceToBatchND( |
| params, tflite::micro::GetTensorShape(input), |
| tflite::micro::GetTensorData<int8_t>(input), |
| tflite::micro::GetTensorShape(block_shape), |
| tflite::micro::GetTensorData<int32_t>(block_shape), |
| tflite::micro::GetTensorShape(crops), |
| tflite::micro::GetTensorData<int32_t>(crops), |
| tflite::micro::GetTensorShape(output), |
| tflite::micro::GetTensorData<int8_t>(output)); |
| break; |
| default: |
| MicroPrintf("Type %s (%d) not supported.", TfLiteTypeGetName(input->type), |
| input->type); |
| return kTfLiteError; |
| } |
| return kTfLiteOk; |
| } |
| |
| } // namespace. |
| |
| TFLMRegistration Register_SPACE_TO_BATCH_ND() { |
| return tflite::micro::RegisterOp(Init, Prepare, Eval); |
| } |
| |
| } // namespace tflite |