mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-05 11:47:56 +00:00
* Check for the case where the Operators vector in a tflite model is missing Some of our tools remove the vector if it's empty (i.e. the subgraph doesn't contain ops). The check is added until the tools are fixed. BUG=http://b/192589496 * Move NumSubgraphOperators to flatbuffer_utils.h/cc * Fix the CI errors. * Remove `#define FLATBUFFERS_LOCALE_INDEPENDENT 0` We will handle that via the Makefile instead. * Add -DFLATBUFFERS_LOCALE_INDEPENDENT=0 to makefile. * remove references to flatbuffer from kernel_utils.cc/h * Fix the build. * run buildifier Co-authored-by: Advait Jain <advaitjain@google.com> Co-authored-by: Advait Jain <advaitjain@users.noreply.github.com>
78 lines
2.8 KiB
C++
78 lines
2.8 KiB
C++
/* Copyright 2020 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/micro/kernels/kernel_util.h"
|
|
|
|
#include "tensorflow/lite/c/common.h"
|
|
|
|
namespace tflite {
|
|
namespace micro {
|
|
|
|
bool HaveSameShapes(const TfLiteEvalTensor* input1,
|
|
const TfLiteEvalTensor* input2) {
|
|
TFLITE_DCHECK(input1 != nullptr);
|
|
TFLITE_DCHECK(input2 != nullptr);
|
|
return TfLiteIntArrayEqual(input1->dims, input2->dims);
|
|
}
|
|
|
|
const RuntimeShape GetTensorShape(const TfLiteEvalTensor* tensor) {
|
|
if (tensor == nullptr || tensor->dims == nullptr) {
|
|
return RuntimeShape();
|
|
}
|
|
TfLiteIntArray* dims = tensor->dims;
|
|
const int dims_size = dims->size;
|
|
const int32_t* dims_data = reinterpret_cast<const int32_t*>(dims->data);
|
|
return RuntimeShape(dims_size, dims_data);
|
|
}
|
|
|
|
PaddingType RuntimePaddingType(TfLitePadding padding) {
|
|
switch (padding) {
|
|
case TfLitePadding::kTfLitePaddingSame:
|
|
return PaddingType::kSame;
|
|
case TfLitePadding::kTfLitePaddingValid:
|
|
return PaddingType::kValid;
|
|
case TfLitePadding::kTfLitePaddingUnknown:
|
|
default:
|
|
return PaddingType::kNone;
|
|
}
|
|
}
|
|
|
|
// Relocate tensor dims from FlatBuffer to the persistent storage arena.
|
|
// The old dims data is copied to the new storage area.
|
|
// The tensor and eval_tensor must be the same tensor.
|
|
// Only use during Prepare phase.
|
|
TfLiteStatus CreateWritableTensorDimsWithCopy(TfLiteContext* context,
|
|
TfLiteTensor* tensor,
|
|
TfLiteEvalTensor* eval_tensor) {
|
|
TF_LITE_ENSURE(context, tensor != nullptr);
|
|
TF_LITE_ENSURE(context, eval_tensor != nullptr);
|
|
TF_LITE_ENSURE(context, context->AllocatePersistentBuffer != nullptr);
|
|
int ranks = tensor->dims->size;
|
|
size_t alloc_size = TfLiteIntArrayGetSizeInBytes(ranks);
|
|
TfLiteIntArray* new_dims = static_cast<TfLiteIntArray*>(
|
|
context->AllocatePersistentBuffer(context, alloc_size));
|
|
TfLiteIntArray* old_dims = tensor->dims;
|
|
new_dims->size = ranks;
|
|
tensor->dims = new_dims;
|
|
eval_tensor->dims = new_dims;
|
|
for (int i = 0; i < ranks; i++) {
|
|
new_dims->data[i] = old_dims->data[i];
|
|
}
|
|
|
|
return kTfLiteOk;
|
|
}
|
|
|
|
} // namespace micro
|
|
} // namespace tflite
|