| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* Copyright 2019 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_LITE_MICRO_MEMORY_HELPERS_H_
- #define TENSORFLOW_LITE_MICRO_MEMORY_HELPERS_H_
- #include <cstddef>
- #include <cstdint>
- #include "tensorflow/lite/c/common.h"
- #include "tensorflow/lite/core/api/error_reporter.h"
- #include "tensorflow/lite/schema/schema_generated.h"
- namespace tflite {
- // Returns the next pointer address aligned to the given alignment.
- uint8_t* AlignPointerUp(uint8_t* data, size_t alignment);
- // Returns the previous pointer address aligned to the given alignment.
- uint8_t* AlignPointerDown(uint8_t* data, size_t alignment);
- // Returns an increased size that's a multiple of alignment.
- size_t AlignSizeUp(size_t size, size_t alignment);
- // Returns size in bytes for a given TfLiteType.
- TfLiteStatus TfLiteTypeSizeOf(TfLiteType type, size_t* size);
- // How many bytes are needed to hold a tensor's contents.
- TfLiteStatus BytesRequiredForTensor(const tflite::Tensor& flatbuffer_tensor,
- size_t* bytes, size_t* type_size,
- ErrorReporter* error_reporter);
- // How many bytes are used in a TfLiteEvalTensor instance. The byte length is
- // returned in out_bytes.
- TfLiteStatus TfLiteEvalTensorByteLength(const TfLiteEvalTensor* eval_tensor,
- size_t* out_bytes);
- // Deduce output dimensions from input and allocate given size.
- // Useful for operators with two inputs where the largest input should equal the
- // output dimension.
- TfLiteStatus AllocateOutputDimensionsFromInput(TfLiteContext* context,
- const TfLiteTensor* input1,
- const TfLiteTensor* input2,
- TfLiteTensor* output);
- } // namespace tflite
- #endif // TENSORFLOW_LITE_MICRO_MEMORY_HELPERS_H_
|