/* 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. ==============================================================================*/ #ifndef TENSORFLOW_CONTRIB_LITE_KERNELS_INTERNAL_TENSOR_H_ #define TENSORFLOW_CONTRIB_LITE_KERNELS_INTERNAL_TENSOR_H_ #include #include #include "tensorflow/contrib/lite/c/c_api_internal.h" #include "tensorflow/contrib/lite/kernels/internal/tensor_ctypes.h" #include "tensorflow/contrib/lite/kernels/internal/types.h" namespace tflite { template <> inline std::complex* GetTensorData(TfLiteTensor* tensor) { return tensor != nullptr ? reinterpret_cast*>(tensor->data.c64) : nullptr; } template <> inline const std::complex* GetTensorData(const TfLiteTensor* tensor) { return tensor != nullptr ? reinterpret_cast*>(tensor->data.c64) : nullptr; } inline RuntimeShape GetTensorShape(std::vector data) { return RuntimeShape(data.size(), data.data()); } // A list of tensors in a format that can be used by kernels like split and // concatenation. template class VectorOfTensors { public: // Build with the tensors in 'tensor_list'. VectorOfTensors(const TfLiteContext& context, const TfLiteIntArray& tensor_list) { int num_tensors = tensor_list.size; all_data_.reserve(num_tensors); all_shape_.reserve(num_tensors); all_shape_ptr_.reserve(num_tensors); for (int i = 0; i < num_tensors; ++i) { TfLiteTensor* t = &context.tensors[tensor_list.data[i]]; all_data_.push_back(GetTensorData(t)); all_shape_.push_back(GetTensorShape(t)); } // Taking the pointer from inside a std::vector is only OK if the vector is // never modified, so we populate all_shape in the previous loop and then we // are free to grab iterators here. for (int i = 0; i < num_tensors; ++i) { all_shape_ptr_.push_back(&all_shape_[i]); } } // Return a pointer to the data pointers of all tensors in the list. For // example: // float* const* f = v.data(); // f[0][1] is the second element of the first tensor. T* const* data() const { return all_data_.data(); } // Return a pointer the shape pointers of all tensors in the list. For // example: // const RuntimeShape* const* d = v.dims(); // dims[1] are the dimensions of the second tensor in the list. const RuntimeShape* const* shapes() const { return all_shape_ptr_.data(); } private: std::vector all_data_; std::vector all_shape_; std::vector all_shape_ptr_; }; // A list of quantized tensors in a format that can be used by kernels like // split and concatenation. class VectorOfQuantizedTensors : public VectorOfTensors { public: // Build with the tensors in 'tensor_list'. VectorOfQuantizedTensors(const TfLiteContext& context, const TfLiteIntArray& tensor_list) : VectorOfTensors(context, tensor_list) { for (int i = 0; i < tensor_list.size; ++i) { TfLiteTensor* t = &context.tensors[tensor_list.data[i]]; zero_point_.push_back(t->params.zero_point); scale_.push_back(t->params.scale); } } const float* scale() const { return scale_.data(); } const int32* zero_point() const { return zero_point_.data(); } private: std::vector zero_point_; std::vector scale_; }; } // namespace tflite #endif // TENSORFLOW_CONTRIB_LITE_KERNELS_INTERNAL_TENSOR_H_