• Home
Name Date Size #Lines LOC

..--

sl/03-May-2024-1,052333

BUILDD03-May-20242.5 KiB10595

NeuralNetworksShim.hD03-May-202468.7 KiB1,697363

NeuralNetworksTypes.hD03-May-202428.2 KiB749343

README.mdD03-May-2024865 1612

nnapi_handler.ccD03-May-20245.5 KiB157116

nnapi_handler.hD03-May-202411.5 KiB343241

nnapi_handler_test.ccD03-May-202410.1 KiB231177

nnapi_implementation.ccD03-May-202419.2 KiB452348

nnapi_implementation.hD03-May-202477.5 KiB1,815169

nnapi_implementation_disabled.ccD03-May-20241.1 KiB3212

nnapi_implementation_test.ccD03-May-20247.6 KiB143123

nnapi_util.ccD03-May-20242.4 KiB8249

nnapi_util.hD03-May-20241.9 KiB4814

README.md

1# Android Neural Network API
2
3The Android Neural Networks API (NNAPI) is an Android C API designed for running
4computationally intensive operators for machine learning on mobile devices.
5Tensorflow Lite is designed to use the NNAPI to perform hardware-accelerated
6inference operators on supported devices.
7Based on the app’s requirements and the hardware capabilities on a device, the
8NNAPI can distribute the computation workload across available on-device
9processors, including dedicated neural network hardware, graphics processing
10units (GPUs), and digital signal processors (DSPs).
11For devices that lack a specialized vendor driver, the NNAPI runtime relies on
12optimized code to execute requests on the CPU. For more information about the
13NNAPI, please refer to the [NNAPI documentation](https://developer.android.com/ndk/guides/neuralnetworks/index.html)
14
15
16