1. change name() to Name(). 2. change Invoke to Eval(). PiperOrigin-RevId: 314287361 Change-Id: I7c5324a1ee7c4ea5f06987da2f55c245e2d6153e
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
/* Copyright 2018 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_DELEGATES_FLEX_KERNEL_H_
|
|
#define TENSORFLOW_LITE_DELEGATES_FLEX_KERNEL_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "tensorflow/lite/c/common.h"
|
|
#include "tensorflow/lite/delegates/utils/simple_delegate.h"
|
|
|
|
namespace tflite {
|
|
namespace flex {
|
|
|
|
struct OpData;
|
|
class DelegateKernel : public SimpleDelegateKernelInterface {
|
|
public:
|
|
DelegateKernel();
|
|
~DelegateKernel() override;
|
|
|
|
TfLiteStatus Init(TfLiteContext* context,
|
|
const TfLiteDelegateParams* params) override;
|
|
TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) override;
|
|
TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) override;
|
|
|
|
private:
|
|
std::unique_ptr<OpData> op_data_;
|
|
};
|
|
|
|
} // namespace flex
|
|
} // namespace tflite
|
|
|
|
#endif // TENSORFLOW_LITE_DELEGATES_FLEX_KERNEL_H_
|