-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
82 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# NNAPI Execution Provider | ||
|
||
[Android Neural Networks API (NNAPI)](https://developer.android.com/ndk/guides/neuralnetworks) is a unified interface to CPU, GPU, and NN accelerators on Android. It is supported by onnxruntime via [DNNLibrary](https://github.com/JDAI-CV/DNNLibrary). | ||
|
||
## Minimum requirements | ||
|
||
The NNAPI EP requires Android devices with Android 8.1 or higher. | ||
|
||
## Build NNAPI EP | ||
|
||
### Pre-Requisites | ||
|
||
To build onnxruntime with NNAPI EP, install Android NDK first (see [BUILD.md](/BUILD.md#android)) | ||
|
||
### Build Instructions | ||
|
||
The basic commands are following. There are also some other parameters for building the Android version. See [BUILD.md](/BUILD.md#android) for the details. | ||
|
||
#### Cross compiling on Windows | ||
|
||
```bash | ||
./build.bat --android --android_ndk_path <android ndk path> --dnnlibrary | ||
``` | ||
|
||
#### Cross compiling on Linux | ||
|
||
```bash | ||
./build.sh --android --android_ndk_path <android ndk path> --dnnlibrary | ||
``` | ||
|
||
## Using NNAPI EP in C/C++ | ||
|
||
To use NNAPI EP for inferencing, please register it as below. | ||
``` | ||
InferenceSession session_object{so}; | ||
session_object.RegisterExecutionProvider(std::make_unique<::onnxruntime::NnapiExecutionProvider>()); | ||
status = session_object.Load(model_file_name); | ||
``` | ||
The C API details are [here](../C_API.md#c-api). | ||
|
||
## Performance | ||
|
||
![NNAPI EP on RK3399](./images/nnapi-ep-rk3399.png) | ||
|
||
![NNAPI EP on OnePlus 6T](./images/nnapi-ep-oneplus6t.png) | ||
|
||
![NNAPI EP on Huawei Honor V10](./images/nnapi-ep-huaweihonorv10.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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