-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modernize Gradle Configuration, Dependencies, and Upgrade Gradle to 8…
….1.4 in /lite/examples/super_resolution/android
- Loading branch information
Showing
16 changed files
with
1,516 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
144 changes: 144 additions & 0 deletions
144
...ion/android/libraries/tensorflowlite-gpu/headers/tensorflow/lite/delegates/gpu/delegate.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
/* Copyright 2019 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_GPU_DELEGATE_H_ | ||
#define TENSORFLOW_LITE_DELEGATES_GPU_DELEGATE_H_ | ||
|
||
#include <stdint.h> | ||
|
||
#include "tensorflow/lite/c/common.h" | ||
|
||
#ifdef SWIG | ||
#define TFL_CAPI_EXPORT | ||
#else | ||
#if defined(_WIN32) | ||
#ifdef TFL_COMPILE_LIBRARY | ||
#define TFL_CAPI_EXPORT __declspec(dllexport) | ||
#else | ||
#define TFL_CAPI_EXPORT __declspec(dllimport) | ||
#endif // TFL_COMPILE_LIBRARY | ||
#else | ||
#define TFL_CAPI_EXPORT __attribute__((visibility("default"))) | ||
#endif // _WIN32 | ||
#endif // SWIG | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif // __cplusplus | ||
|
||
// Encapsulated compilation/runtime tradeoffs. | ||
enum TfLiteGpuInferenceUsage { | ||
// Delegate will be used only once, therefore, bootstrap/init time should | ||
// be taken into account. | ||
TFLITE_GPU_INFERENCE_PREFERENCE_FAST_SINGLE_ANSWER = 0, | ||
|
||
// Prefer maximizing the throughput. Same delegate will be used repeatedly on | ||
// multiple inputs. | ||
TFLITE_GPU_INFERENCE_PREFERENCE_SUSTAINED_SPEED = 1, | ||
}; | ||
|
||
enum TfLiteGpuInferencePriority { | ||
// AUTO priority is needed when a single priority is the most important | ||
// factor. For example, | ||
// priority1 = MIN_LATENCY would result in the configuration that achieves | ||
// maximum performance. | ||
TFLITE_GPU_INFERENCE_PRIORITY_AUTO = 0, | ||
TFLITE_GPU_INFERENCE_PRIORITY_MAX_PRECISION = 1, | ||
TFLITE_GPU_INFERENCE_PRIORITY_MIN_LATENCY = 2, | ||
TFLITE_GPU_INFERENCE_PRIORITY_MIN_MEMORY_USAGE = 3, | ||
}; | ||
|
||
// Used to toggle experimental flags used in the delegate. Note that this is a | ||
// bitmask, so the values should be 1, 2, 4, 8, ...etc. | ||
enum TfLiteGpuExperimentalFlags { | ||
TFLITE_GPU_EXPERIMENTAL_FLAGS_NONE = 0, | ||
// Enables inference on quantized models with the delegate. | ||
TFLITE_GPU_EXPERIMENTAL_FLAGS_ENABLE_QUANT = 1 << 0, | ||
// Enforces execution with the provided backend. | ||
TFLITE_GPU_EXPERIMENTAL_FLAGS_CL_ONLY = 1 << 1, | ||
TFLITE_GPU_EXPERIMENTAL_FLAGS_GL_ONLY = 1 << 2 | ||
}; | ||
|
||
// IMPORTANT: Always use TfLiteGpuDelegateOptionsV2Default() method to create | ||
// new instance of TfLiteGpuDelegateOptionsV2, otherwise every new added option | ||
// may break inference. | ||
typedef struct { | ||
// When set to zero, computations are carried out in maximal possible | ||
// precision. Otherwise, the GPU may quantify tensors, downcast values, | ||
// process in FP16 to increase performance. For most models precision loss is | ||
// warranted. | ||
// [OBSOLETE]: to be removed | ||
int32_t is_precision_loss_allowed; | ||
|
||
// Preference is defined in TfLiteGpuInferenceUsage. | ||
int32_t inference_preference; | ||
|
||
// Ordered priorities provide better control over desired semantics, | ||
// where priority(n) is more important than priority(n+1), therefore, | ||
// each time inference engine needs to make a decision, it uses | ||
// ordered priorities to do so. | ||
// For example: | ||
// MAX_PRECISION at priority1 would not allow to decrease precision, | ||
// but moving it to priority2 or priority3 would result in F16 calculation. | ||
// | ||
// Priority is defined in TfLiteGpuInferencePriority. | ||
// AUTO priority can only be used when higher priorities are fully specified. | ||
// For example: | ||
// VALID: priority1 = MIN_LATENCY, priority2 = AUTO, priority3 = AUTO | ||
// VALID: priority1 = MIN_LATENCY, priority2 = MAX_PRECISION, | ||
// priority3 = AUTO | ||
// INVALID: priority1 = AUTO, priority2 = MIN_LATENCY, priority3 = AUTO | ||
// INVALID: priority1 = MIN_LATENCY, priority2 = AUTO, | ||
// priority3 = MAX_PRECISION | ||
// Invalid priorities will result in error. | ||
int32_t inference_priority1; | ||
int32_t inference_priority2; | ||
int32_t inference_priority3; | ||
|
||
// Bitmask flags. See the comments in TfLiteGpuExperimentalFlags. | ||
int64_t experimental_flags; | ||
|
||
// A graph could have multiple partitions that can be delegated to the GPU. | ||
// This limits the maximum number of partitions to be delegated. By default, | ||
// it's set to 1 in TfLiteGpuDelegateOptionsV2Default(). | ||
int32_t max_delegated_partitions; | ||
} TfLiteGpuDelegateOptionsV2; | ||
|
||
// Populates TfLiteGpuDelegateOptionsV2 as follows: | ||
// is_precision_loss_allowed = false | ||
// inference_preference = TFLITE_GPU_INFERENCE_PREFERENCE_FAST_SINGLE_ANSWER | ||
// priority1 = TFLITE_GPU_INFERENCE_PRIORITY_MAX_PRECISION | ||
// priority2 = TFLITE_GPU_INFERENCE_PRIORITY_AUTO | ||
// priority3 = TFLITE_GPU_INFERENCE_PRIORITY_AUTO | ||
TFL_CAPI_EXPORT TfLiteGpuDelegateOptionsV2 TfLiteGpuDelegateOptionsV2Default(); | ||
|
||
// Creates a new delegate instance that need to be destroyed with | ||
// TfLiteGpuDelegateV2Delete when delegate is no longer used by TFLite. | ||
// | ||
// This delegate encapsulates multiple GPU-acceleration APIs under the hood to | ||
// make use of the fastest available on a device. | ||
// | ||
// When `options` is set to `nullptr`, then default options are used. | ||
TFL_CAPI_EXPORT TfLiteDelegate* TfLiteGpuDelegateV2Create( | ||
const TfLiteGpuDelegateOptionsV2* options); | ||
|
||
// Destroys a delegate created with `TfLiteGpuDelegateV2Create` call. | ||
TFL_CAPI_EXPORT void TfLiteGpuDelegateV2Delete(TfLiteDelegate* delegate); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif // __cplusplus | ||
|
||
#endif // TENSORFLOW_LITE_DELEGATES_GPU_DELEGATE_H_ |
Binary file added
BIN
+2.35 MB
...esolution/android/libraries/tensorflowlite-gpu/jni/arm64-v8a/libtensorflowlite_gpu_jni.so
Binary file not shown.
Binary file added
BIN
+1.56 MB
...olution/android/libraries/tensorflowlite-gpu/jni/armeabi-v7a/libtensorflowlite_gpu_jni.so
Binary file not shown.
Binary file added
BIN
+2.8 MB
...uper_resolution/android/libraries/tensorflowlite-gpu/jni/x86/libtensorflowlite_gpu_jni.so
Binary file not shown.
Binary file added
BIN
+2.7 MB
...r_resolution/android/libraries/tensorflowlite-gpu/jni/x86_64/libtensorflowlite_gpu_jni.so
Binary file not shown.
Oops, something went wrong.