/* Copyright 2022 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. ==============================================================================*/ #define FLATBUFFERS_LOCALE_INDEPENDENT 0 #include "edge-impulse-sdk/third_party/flatbuffers/include/flatbuffers/flexbuffers.h" #include "edge-impulse-sdk/tensorflow/lite/c/common.h" #include "edge-impulse-sdk/tensorflow/lite/micro/kernels/kernel_util.h" #include "edge-impulse-sdk/tensorflow/lite/micro/micro_context.h" #include "edge-impulse-sdk/tensorflow/lite/micro/micro_log.h" #if EI_CLASSIFIER_TFLITE_ETHOSU_POLYFILL || EI_ETHOS #if EI_CLASSIFIER_TFLITE_ETHOSU_POLYFILL // Modified by Edge Impulse // Add stub definitions so that EON Compiler can run int ethosu_invoke(struct ethosu_driver *drv, const void *custom_data_ptr, const int custom_data_size, const uint64_t *base_addr, const size_t *base_addr_size, const int num_base_addr) { return 0; } // forward declare the struct struct ethosu_driver; struct ethosu_driver *ethosu_reserve_driver(void) { return nullptr; } void ethosu_release_driver(struct ethosu_driver *drv) {} #else #include #endif namespace tflite { namespace { constexpr uint8_t CO_TYPE_ETHOSU = 1; struct OpData { int cms_data_size; int base_addr_idx; int base_addr_size_idx; }; void* Init(TfLiteContext* context, const char* buffer, size_t length) { TFLITE_DCHECK(context->AllocatePersistentBuffer != nullptr); return context->AllocatePersistentBuffer(context, sizeof(OpData)); } void Free(TfLiteContext* context, void* buffer) {} TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { TFLITE_DCHECK(context != nullptr); TF_LITE_ENSURE(context, node->inputs->size > 0); TFLITE_DCHECK(node->user_data != nullptr); TF_LITE_ENSURE(context, node->custom_initial_data_size > 0); OpData* data = static_cast(node->user_data); int num_base_addr = node->inputs->size + node->outputs->size; // Request arrays for the base address pointers and sizes. TF_LITE_ENSURE_STATUS(context->RequestScratchBufferInArena( context, num_base_addr * sizeof(uint64_t), &data->base_addr_idx)); TF_LITE_ENSURE_STATUS(context->RequestScratchBufferInArena( context, num_base_addr * sizeof(size_t), &data->base_addr_size_idx)); // Get command stream data size. MicroContext* micro_context = GetMicroContext(context); TfLiteTensor* tensor = micro_context->AllocateTempInputTensor(node, 0); data->cms_data_size = tensor->bytes; micro_context->DeallocateTempTfLiteTensor(tensor); return kTfLiteOk; } TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { TFLITE_DCHECK(node->user_data != nullptr); TFLITE_DCHECK(context != nullptr); TFLITE_DCHECK(context->GetScratchBuffer != nullptr); // Get base addresses. TfLiteEvalTensor* tensor; int i = 0; int num_tensors = 0; void* cms_data; uint8_t co_type; int result; const OpData* data = static_cast(node->user_data); uint64_t* base_addrs = static_cast( context->GetScratchBuffer(context, data->base_addr_idx)); size_t* base_addrs_size = static_cast( context->GetScratchBuffer(context, data->base_addr_size_idx)); const uint8_t* custom_data = static_cast(node->custom_initial_data); auto root = flexbuffers::GetRoot(custom_data, node->custom_initial_data_size); co_type = root.AsInt8(); if (co_type != CO_TYPE_ETHOSU) { MicroPrintf("CO_TYPE != ETHOSU"); return kTfLiteError; } // Get command stream data address. tensor = context->GetEvalTensor(context, node->inputs->data[0]); cms_data = reinterpret_cast(tensor->data.uint8); // Get addresses to weights/scratch/input data. for (i = 1; i < node->inputs->size; ++i) { tensor = context->GetEvalTensor(context, node->inputs->data[i]); base_addrs[num_tensors] = static_cast(reinterpret_cast(tensor->data.uint8)); size_t byte_size = 1; for (int k = 0; k < tensor->dims->size; k++) { byte_size = byte_size * tensor->dims->data[k]; } base_addrs_size[num_tensors] = byte_size; num_tensors++; } // Get addresses to output data. for (i = 0; i < node->outputs->size; ++i) { tensor = context->GetEvalTensor(context, node->outputs->data[i]); base_addrs[num_tensors] = static_cast(reinterpret_cast(tensor->data.uint8)); size_t byte_size = 1; for (int k = 0; k < tensor->dims->size; k++) { byte_size = byte_size * tensor->dims->data[k]; } base_addrs_size[num_tensors] = byte_size; num_tensors++; } // Ethos-U guarantees that the tensors that require a base pointer are among // the 8 first tensors // When Vela optimizes a tflite file it will assign the tensors like this: // // +-------+------------------------+ +--------+-------------+ // | INPUT | Description | | OUTPUT | Description | // +-------+------------------------+ +--------+-------------+ // | 0 | Ethos-U command stream | | 0..m | Outputs | // | 1 | TFLM model | +--------+-------------+ // | 2 | TFLM arena | // | 3 | Ethos-U fast scratch | // | 4..n | Inputs | // +-------+------------------------+ // // This code will assign the NPU base addresses like this: // // +--------------+----------------------+ // | Base address | Description | // +--------------+----------------------+ // | 0 | TFLM model | // | 1 | TFLM arena | // | 2 | Ethos-U fast scratch | // | 3..n | Input tensors | // | n..m | Output tensors | // +--------------+----------------------+ // // The number of base address will be limited to 8. // // NOTE! The command stream produced by Vela will access the IFM and OFM // buffers using base address 1. This means that it is not possible to point // the input and output tensors outside of the TFLM arena. num_tensors = std::min(num_tensors, 8); struct ethosu_driver* drv = ethosu_reserve_driver(); result = ethosu_invoke(drv, cms_data, data->cms_data_size, base_addrs, base_addrs_size, num_tensors); ethosu_release_driver(drv); if (-1 == result) { return kTfLiteError; } else { return kTfLiteOk; } } } // namespace TfLiteRegistration* Register_ETHOSU() { static TfLiteRegistration r = tflite::micro::RegisterOp(Init, Prepare, Eval); return &r; } const char* GetString_ETHOSU() { return "ethos-u"; } } // namespace tflite #else // // This is a stub file for non-Ethos platforms // #include "edge-impulse-sdk/tensorflow/lite/c/common.h" namespace tflite { TfLiteRegistration* Register_ETHOSU() { return nullptr; } const char* GetString_ETHOSU() { return ""; } } // namespace tflite #endif // Ethos flag