• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2020 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 
16 #ifndef TENSORFLOW_LITE_DELEGATES_XNNPACK_XNNPACK_DELEGATE_H_
17 #define TENSORFLOW_LITE_DELEGATES_XNNPACK_XNNPACK_DELEGATE_H_
18 
19 #include "tensorflow/lite/c/common.h"
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif  // __cplusplus
24 
25 typedef struct {
26   // Number of threads to use in the thread pool.
27   // 0 or negative value means no thread pool used.
28   int32_t num_threads;
29 } TfLiteXNNPackDelegateOptions;
30 
31 // Returns a structure with the default XNNPack delegate options.
32 TfLiteXNNPackDelegateOptions TfLiteXNNPackDelegateOptionsDefault();
33 
34 // Creates a new delegate instance that need to be destroyed with
35 // `TfLiteXNNPackDelegateDelete` when delegate is no longer used by TFLite.
36 // When `options` is set to `nullptr`, the following default values are used:
37 TfLiteDelegate* TfLiteXNNPackDelegateCreate(
38     const TfLiteXNNPackDelegateOptions* options);
39 
40 // Destroys a delegate created with `TfLiteXNNPackDelegateCreate` call.
41 void TfLiteXNNPackDelegateDelete(TfLiteDelegate* delegate);
42 
43 #ifdef __cplusplus
44 }
45 #endif  // __cplusplus
46 
47 #endif  // TENSORFLOW_LITE_DELEGATES_XNNPACK_XNNPACK_DELEGATE_H_
48