99 lines
4.2 KiB
C++
99 lines
4.2 KiB
C++
/* 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.
|
|
==============================================================================*/
|
|
|
|
#include "tensorflow/lite/c/common_internal.h"
|
|
|
|
#include <cstdint>
|
|
|
|
#include "tensorflow/lite/core/c/c_api_types.h"
|
|
#include "tensorflow/lite/core/c/common.h"
|
|
|
|
bool TfLiteDelegateIsOpaque(const TfLiteDelegate* delegate) {
|
|
return delegate != nullptr && delegate->Prepare == nullptr &&
|
|
delegate->CopyFromBufferHandle == nullptr &&
|
|
delegate->FreeBufferHandle == nullptr &&
|
|
delegate->opaque_delegate_builder != nullptr;
|
|
}
|
|
|
|
TfLiteStatus TfLiteDelegatePrepareInternal(TfLiteContext* context,
|
|
TfLiteDelegate* delegate) {
|
|
TfLiteStatus status = kTfLiteOk;
|
|
// The following casts are safe only because this code is part of the
|
|
// TF Lite runtime implementation. Apps using TF Lite should not rely on
|
|
// TfLiteOpaqueContext and TfLiteContext being equivalent, or on
|
|
// TfLiteOpaqueDelegate and TfLiteDelegate being equivalent.
|
|
if (TfLiteDelegateIsOpaque(delegate) &&
|
|
delegate->opaque_delegate_builder->Prepare) {
|
|
status = delegate->opaque_delegate_builder->Prepare(
|
|
reinterpret_cast<TfLiteOpaqueContext*>(context),
|
|
reinterpret_cast<TfLiteOpaqueDelegate*>(delegate),
|
|
delegate->opaque_delegate_builder->data);
|
|
} else {
|
|
status = delegate->Prepare(context, delegate);
|
|
}
|
|
return status;
|
|
}
|
|
|
|
TfLiteStatus TfLiteDelegateCopyFromBufferHandleInternal(
|
|
TfLiteContext* context, TfLiteDelegate* delegate,
|
|
TfLiteBufferHandle buffer_handle, TfLiteTensor* tensor) {
|
|
// The following casts are safe only because this code is part of the
|
|
// TF Lite runtime implementation. Apps using TF Lite should not rely on
|
|
// TfLiteOpaqueContext and TfLiteContext being equivalent, or on
|
|
// TfLiteOpaqueDelegate and TfLiteDelegate being equivalent.
|
|
if (TfLiteDelegateIsOpaque(delegate) &&
|
|
delegate->opaque_delegate_builder->CopyFromBufferHandle) {
|
|
return delegate->opaque_delegate_builder->CopyFromBufferHandle(
|
|
reinterpret_cast<TfLiteOpaqueContext*>(context),
|
|
reinterpret_cast<TfLiteOpaqueDelegate*>(delegate),
|
|
delegate->opaque_delegate_builder->data, tensor->buffer_handle,
|
|
reinterpret_cast<TfLiteOpaqueTensor*>(tensor));
|
|
} else {
|
|
TF_LITE_ENSURE(context, delegate->CopyFromBufferHandle != nullptr);
|
|
return delegate->CopyFromBufferHandle(context, delegate,
|
|
tensor->buffer_handle, tensor);
|
|
}
|
|
}
|
|
|
|
TfLiteStatus TfLiteDelegateFreeBufferHandleInternal(
|
|
TfLiteContext* context, TfLiteDelegate* delegate,
|
|
TfLiteBufferHandle* buffer_handle) {
|
|
// The following casts are safe only because this code is part of the
|
|
// TF Lite runtime implementation. Apps using TF Lite should not rely on
|
|
// TfLiteOpaqueContext and TfLiteContext being equivalent, or on
|
|
// TfLiteOpaqueDelegate and TfLiteDelegate being equivalent.
|
|
if (TfLiteDelegateIsOpaque(delegate) &&
|
|
delegate->opaque_delegate_builder->FreeBufferHandle) {
|
|
delegate->opaque_delegate_builder->FreeBufferHandle(
|
|
reinterpret_cast<TfLiteOpaqueContext*>(context),
|
|
reinterpret_cast<TfLiteOpaqueDelegate*>(delegate),
|
|
delegate->opaque_delegate_builder->data, buffer_handle);
|
|
return kTfLiteOk;
|
|
} else if (delegate->FreeBufferHandle != nullptr) {
|
|
delegate->FreeBufferHandle(context, delegate, buffer_handle);
|
|
return kTfLiteOk;
|
|
}
|
|
|
|
// We failed to free the buffer handle.
|
|
return kTfLiteError;
|
|
}
|
|
|
|
int64_t TfLiteDelegateGetFlagsInternal(TfLiteDelegate* delegate) {
|
|
if (TfLiteDelegateIsOpaque(delegate)) {
|
|
return delegate->opaque_delegate_builder->flags;
|
|
}
|
|
return delegate->flags;
|
|
}
|