README.txt 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Copyright 2017 The Android Open Source Project
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License.
  11. ------------------------------------------------------------------
  12. This directory contains files for the Android Neural Networks API.
  13. CONTENTS OF THIS DIRECTORY
  14. ./runtime: Implementation of the NN API runtime.
  15. Includes source code and internal header files.
  16. ./runtime/include: The header files that an external developer would use.
  17. These will be packaged with the NDK. Includes a
  18. C++ wrapper around the C API to make it easier to use.
  19. ./runtime/test: Test files.
  20. ./sample_driver: Sample driver that uses the CPU to execute queries.
  21. NOT TO BE SHIPPED. Only to be used as a testing and
  22. learning tool.
  23. ./common: Contains files that can be useful for multiple components,
  24. e.g. runtime, driver, or tests. Includes source code and
  25. internal header files.
  26. ./common/include: Header files to be used by the components using common.
  27. ./common/operations: CPU implementation of the operations.
  28. RELATED DIRECTORIES
  29. /hardware/interfaces/neuralnetworks: Definition of the HAL.
  30. /hardware/interfaces/neuralnetworks/*/vts: The VTS tests.
  31. /test/vts-testcase/hal/neuralnetworks: Configuration for the VTS tests
  32. THE FOLLOWING SUBDIRECTORIES ARE EXPECTED IN LATER RELEASES:
  33. ./tools: Tools used to develop the API, i.e. not external developer tools
  34. ./tools/benchmark: To test performance.
  35. /cts/tests/tests/ml/nn: The CTS tests