• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 #ifndef TENSORFLOW_LITE_DELEGATES_FLEX_KERNEL_H_
16 #define TENSORFLOW_LITE_DELEGATES_FLEX_KERNEL_H_
17 
18 #include "tensorflow/lite/c/c_api_internal.h"
19 
20 namespace tflite {
21 namespace flex {
22 
23 // Return the registration object used to initialize and execute ops that will
24 // be delegated to TensorFlow's Eager runtime. This TF Lite op is created by
25 // the flex delegate to handle execution of a supported subgraph. The usual
26 // flow is that the delegate informs the interpreter of supported nodes in a
27 // graph, and each supported subgraph is replaced with one instance of this
28 // kernel.
29 TfLiteRegistration GetKernel();
30 
31 }  // namespace flex
32 }  // namespace tflite
33 
34 #endif  // TENSORFLOW_LITE_DELEGATES_FLEX_KERNEL_H_
35