/* 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 #include #include "tensorflow/contrib/lite/c/builtin_op_data.h" #include "tensorflow/contrib/lite/c/c_api_internal.h" #include "tensorflow/contrib/lite/kernels/internal/reference/reference_ops.h" #include "tensorflow/contrib/lite/kernels/internal/tensor.h" #include "tensorflow/contrib/lite/kernels/kernel_util.h" #include "tensorflow/contrib/lite/kernels/op_macros.h" namespace tflite { namespace ops { namespace builtin { namespace tile { constexpr int kInputTensor = 0; constexpr int kInputMultipliers = 1; constexpr int kOutputTensor = 0; namespace { template TfLiteIntArray* MultiplyShapeDims(const TfLiteIntArray& shape, const TfLiteTensor* multipliers, int num_dimensions) { const T* multipliers_v = GetTensorData(multipliers); TfLiteIntArray* output_shape = TfLiteIntArrayCreate(num_dimensions); for (int i = 0; i < num_dimensions; ++i) { output_shape->data[i] = shape.data[i] * multipliers_v[i]; } return output_shape; } TfLiteStatus ResizeOutput(TfLiteContext* context, TfLiteNode* node) { const TfLiteTensor* input = GetInput(context, node, kInputTensor); TfLiteTensor* output = GetOutput(context, node, kOutputTensor); const TfLiteTensor* multipliers = GetInput(context, node, kInputMultipliers); const int num_dimensions = NumDimensions(input); const int num_multipliers = NumElements(multipliers); TF_LITE_ENSURE_EQ(context, num_dimensions, num_multipliers); switch (multipliers->type) { case kTfLiteInt32: return context->ResizeTensor( context, output, MultiplyShapeDims(*input->dims, multipliers, num_dimensions)); case kTfLiteInt64: return context->ResizeTensor( context, output, MultiplyShapeDims(*input->dims, multipliers, num_dimensions)); default: context->ReportError(context, "Tile not supported multiply tensor type."); return kTfLiteError; } } template void CopyMultipleTimes(const T* in_data, int32_t in_size, int32_t multiplier, T* out_data) { for (int i = 0; i < multiplier; ++i) { const T* in_end = in_data + in_size; T* new_out_data = std::copy(in_data, in_end, out_data); in_data = out_data; out_data = new_out_data; } } template std::pair TileOneDimension(const TfLiteIntArray& in_dimensions, const T* in_data, const M* multipliers, T* out_data, int dimension) { const int dimension_size = in_dimensions.data[dimension]; if (dimension == in_dimensions.size - 1) { CopyMultipleTimes(in_data, dimension_size, multipliers[dimension], out_data); return std::make_pair( dimension_size, dimension_size * static_cast(multipliers[dimension])); } int total_stride_size = 0, total_tiled_stride_size = 0; const T* copy_from_data = in_data; T* copy_to_data = out_data; for (int i = 0; i < dimension_size; ++i) { int stride_size = 0, tiled_stride_size = 0; std::tie(stride_size, tiled_stride_size) = TileOneDimension(in_dimensions, copy_from_data, multipliers, copy_to_data, dimension + 1); copy_from_data += stride_size; copy_to_data += tiled_stride_size; total_stride_size += stride_size; total_tiled_stride_size += tiled_stride_size; } CopyMultipleTimes(out_data, total_tiled_stride_size, multipliers[dimension] - 1, out_data + total_tiled_stride_size); return std::make_pair(total_stride_size, total_tiled_stride_size * multipliers[dimension]); } template void Tile(const TfLiteIntArray& in_dimensions, const TfLiteTensor* in_data, const TfLiteTensor* multipliers, TfLiteTensor* out_data) { // Doing recursively tiling from top to down dimension. switch (multipliers->type) { case kTfLiteInt32: TileOneDimension(in_dimensions, GetTensorData(in_data), GetTensorData(multipliers), GetTensorData(out_data), 0); break; case kTfLiteInt64: TileOneDimension(in_dimensions, GetTensorData(in_data), GetTensorData(multipliers), GetTensorData(out_data), 0); break; default: break; } } } // 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 = GetInput(context, node, kInputTensor); TfLiteTensor* output = GetOutput(context, node, kOutputTensor); TF_LITE_ENSURE_EQ(context, input->type, output->type); const TfLiteTensor* multipliers = GetInput(context, node, kInputMultipliers); // Only int32 and int64 multipliers type is supported. TF_LITE_ENSURE_MSG(context, (multipliers->type == kTfLiteInt32) || (multipliers->type == kTfLiteInt64), "Tile only supports int32 and int64 mutlipliers."); if (IsConstantTensor(multipliers)) { TF_LITE_ENSURE_OK(context, ResizeOutput(context, node)); } else { SetTensorToDynamic(output); } return kTfLiteOk; } TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { const TfLiteTensor* input = GetInput(context, node, kInputTensor); TfLiteTensor* output = GetOutput(context, node, kOutputTensor); const TfLiteTensor* multipliers = GetInput(context, node, kInputMultipliers); if (IsDynamicTensor(output)) { TF_LITE_ENSURE_OK(context, ResizeOutput(context, node)); } switch (output->type) { case kTfLiteFloat32: Tile(*(input->dims), input, multipliers, output); break; case kTfLiteUInt8: Tile(*(input->dims), input, multipliers, output); break; case kTfLiteInt32: Tile(*(input->dims), input, multipliers, output); break; case kTfLiteInt64: Tile(*(input->dims), input, multipliers, output); break; default: context->ReportError(context, "Type is currently not supported by Tile."); return kTfLiteError; } return kTfLiteOk; } } // namespace tile TfLiteRegistration* Register_TILE() { static TfLiteRegistration r = {nullptr, nullptr, tile::Prepare, tile::Eval}; return &r; } } // namespace builtin } // namespace ops } // namespace tflite