├── .clang-format ├── .daq_pm └── configs │ ├── all-27 │ ├── all-28 │ ├── benchmark │ ├── benchmark-27 │ ├── benchmark-29 │ ├── ex_model_builder │ ├── infer │ ├── jni │ ├── onnx2daq │ ├── onnx2daqquant │ ├── onnx_infer │ └── x86-all ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── benchmark.py ├── binaries ├── CMakeLists.txt ├── argh.h ├── dnn_benchmark.cpp ├── dnn_retrieve_result.cpp ├── ex_model_builder.cpp └── get_devices.cpp ├── ci ├── adb_push_and_run.sh ├── android_aar │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── dnnlibrary │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── me │ │ │ └── daquexian │ │ │ └── dnnlibrary │ │ │ ├── Model.java │ │ │ └── ModelBuilder.java │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── appimage │ ├── onnx2daq.desktop │ └── onnx2daq.png ├── build_aar.sh ├── build_appimage.sh ├── build_dnnlibrary.sh ├── build_onnx2daq.sh ├── dnnlibrary_build_and_test.yml ├── download_and_test_models.sh ├── download_protoc.sh ├── get_cores.sh ├── onnx2daq_build.yml ├── onnxruntime_test.yml ├── start_android_emulator.sh ├── template_onnx2daq_build_python.yml ├── template_onnx2daq_build_python_all_version.yml ├── template_onnx2daq_github_release.yml ├── template_onnx2daq_publish_artifacts.yml ├── template_onnx2daq_upload_to_pypi.yml └── validate_onnx.py ├── cmake ├── DNNLibraryConfig.cmake.in ├── ONNX2daqConfig.cmake.in ├── common.cmake ├── flatbuffers.cmake ├── glog.cmake ├── onnx.cmake ├── protobuf.cmake ├── system.cmake └── utils.cmake ├── common ├── Shaper.cpp ├── daq.fbs ├── helper.h ├── internal_vars.cpp ├── internal_vars.h └── log_helper.h ├── dnnlibrary ├── CMakeLists.txt ├── DaqReader.cpp ├── JavaWrapper.cpp ├── Model.cpp ├── ModelBuilder.cpp ├── ModelBuilderImpl.cpp ├── NeuralNetworksWrapper.cpp ├── OnnxReader.cpp ├── android_log_helper.h ├── flatbuffers_helper.h ├── jni_handle.h ├── nnapi_helper.h └── nnapi_implementation.cc ├── generate_code.py ├── images ├── DNNLibrary-huaweihonorv10.png ├── DNNLibrary-oneplus6t.png ├── DNNLibrary-rk3399.png ├── screenshot.png ├── screenshot_camera_mnist.png ├── screenshot_image_mnist.png ├── screenshot_image_resnet.png ├── screenshot_quant8.png └── screenshot_raw_nnapi.png ├── include ├── common │ ├── Shaper.h │ ├── StrKeyMap.h │ ├── daq_generated.h │ ├── data_types.h │ ├── expected.hpp │ └── optional.h ├── dnnlibrary │ ├── DaqReader.h │ ├── Device.h │ ├── Model.h │ ├── ModelBuilder.h │ ├── NeuralNetworksTypes.h │ ├── NeuralNetworksWrapper.h │ ├── OnnxReader.h │ └── nnapi_implementation.h └── tools │ └── onnx2daq │ └── OnnxConverter.h ├── ops.yml ├── quant.py └── tools ├── CMakeLists.txt ├── getsupportednodes ├── CMakeLists.txt └── getsupportednodes.cpp └── onnx2daq ├── CMakeLists.txt ├── NodeAttrHelper.cpp ├── NodeAttrHelper.h ├── OnnxConverter.cpp ├── OnnxConverterImpl.cpp ├── onnx2daq.cpp ├── python ├── onnx2daq │ ├── __init__.py │ ├── __main__.py │ └── convert.py └── setup.py └── pywrapper.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.clang-format -------------------------------------------------------------------------------- /.daq_pm/configs/all-27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/all-27 -------------------------------------------------------------------------------- /.daq_pm/configs/all-28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/all-28 -------------------------------------------------------------------------------- /.daq_pm/configs/benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/benchmark -------------------------------------------------------------------------------- /.daq_pm/configs/benchmark-27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/benchmark-27 -------------------------------------------------------------------------------- /.daq_pm/configs/benchmark-29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/benchmark-29 -------------------------------------------------------------------------------- /.daq_pm/configs/ex_model_builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/ex_model_builder -------------------------------------------------------------------------------- /.daq_pm/configs/infer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/infer -------------------------------------------------------------------------------- /.daq_pm/configs/jni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/jni -------------------------------------------------------------------------------- /.daq_pm/configs/onnx2daq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/onnx2daq -------------------------------------------------------------------------------- /.daq_pm/configs/onnx2daqquant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/onnx2daqquant -------------------------------------------------------------------------------- /.daq_pm/configs/onnx_infer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/onnx_infer -------------------------------------------------------------------------------- /.daq_pm/configs/x86-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.daq_pm/configs/x86-all -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/benchmark.py -------------------------------------------------------------------------------- /binaries/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/binaries/CMakeLists.txt -------------------------------------------------------------------------------- /binaries/argh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/binaries/argh.h -------------------------------------------------------------------------------- /binaries/dnn_benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/binaries/dnn_benchmark.cpp -------------------------------------------------------------------------------- /binaries/dnn_retrieve_result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/binaries/dnn_retrieve_result.cpp -------------------------------------------------------------------------------- /binaries/ex_model_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/binaries/ex_model_builder.cpp -------------------------------------------------------------------------------- /binaries/get_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/binaries/get_devices.cpp -------------------------------------------------------------------------------- /ci/adb_push_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/adb_push_and_run.sh -------------------------------------------------------------------------------- /ci/android_aar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/.gitignore -------------------------------------------------------------------------------- /ci/android_aar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/README.md -------------------------------------------------------------------------------- /ci/android_aar/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/build.gradle -------------------------------------------------------------------------------- /ci/android_aar/dnnlibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ci/android_aar/dnnlibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/dnnlibrary/build.gradle -------------------------------------------------------------------------------- /ci/android_aar/dnnlibrary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/dnnlibrary/proguard-rules.pro -------------------------------------------------------------------------------- /ci/android_aar/dnnlibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/dnnlibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ci/android_aar/dnnlibrary/src/main/java/me/daquexian/dnnlibrary/Model.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/dnnlibrary/src/main/java/me/daquexian/dnnlibrary/Model.java -------------------------------------------------------------------------------- /ci/android_aar/dnnlibrary/src/main/java/me/daquexian/dnnlibrary/ModelBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/dnnlibrary/src/main/java/me/daquexian/dnnlibrary/ModelBuilder.java -------------------------------------------------------------------------------- /ci/android_aar/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/gradle.properties -------------------------------------------------------------------------------- /ci/android_aar/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ci/android_aar/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ci/android_aar/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/gradlew -------------------------------------------------------------------------------- /ci/android_aar/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/android_aar/gradlew.bat -------------------------------------------------------------------------------- /ci/android_aar/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':dnnlibrary' 2 | -------------------------------------------------------------------------------- /ci/appimage/onnx2daq.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/appimage/onnx2daq.desktop -------------------------------------------------------------------------------- /ci/appimage/onnx2daq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/appimage/onnx2daq.png -------------------------------------------------------------------------------- /ci/build_aar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/build_aar.sh -------------------------------------------------------------------------------- /ci/build_appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/build_appimage.sh -------------------------------------------------------------------------------- /ci/build_dnnlibrary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/build_dnnlibrary.sh -------------------------------------------------------------------------------- /ci/build_onnx2daq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/build_onnx2daq.sh -------------------------------------------------------------------------------- /ci/dnnlibrary_build_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/dnnlibrary_build_and_test.yml -------------------------------------------------------------------------------- /ci/download_and_test_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/download_and_test_models.sh -------------------------------------------------------------------------------- /ci/download_protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/download_protoc.sh -------------------------------------------------------------------------------- /ci/get_cores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/get_cores.sh -------------------------------------------------------------------------------- /ci/onnx2daq_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/onnx2daq_build.yml -------------------------------------------------------------------------------- /ci/onnxruntime_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/onnxruntime_test.yml -------------------------------------------------------------------------------- /ci/start_android_emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/start_android_emulator.sh -------------------------------------------------------------------------------- /ci/template_onnx2daq_build_python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/template_onnx2daq_build_python.yml -------------------------------------------------------------------------------- /ci/template_onnx2daq_build_python_all_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/template_onnx2daq_build_python_all_version.yml -------------------------------------------------------------------------------- /ci/template_onnx2daq_github_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/template_onnx2daq_github_release.yml -------------------------------------------------------------------------------- /ci/template_onnx2daq_publish_artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/template_onnx2daq_publish_artifacts.yml -------------------------------------------------------------------------------- /ci/template_onnx2daq_upload_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/template_onnx2daq_upload_to_pypi.yml -------------------------------------------------------------------------------- /ci/validate_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ci/validate_onnx.py -------------------------------------------------------------------------------- /cmake/DNNLibraryConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/cmake/DNNLibraryConfig.cmake.in -------------------------------------------------------------------------------- /cmake/ONNX2daqConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/cmake/ONNX2daqConfig.cmake.in -------------------------------------------------------------------------------- /cmake/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/cmake/common.cmake -------------------------------------------------------------------------------- /cmake/flatbuffers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/cmake/flatbuffers.cmake -------------------------------------------------------------------------------- /cmake/glog.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/cmake/glog.cmake -------------------------------------------------------------------------------- /cmake/onnx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/cmake/onnx.cmake -------------------------------------------------------------------------------- /cmake/protobuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/cmake/protobuf.cmake -------------------------------------------------------------------------------- /cmake/system.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/cmake/system.cmake -------------------------------------------------------------------------------- /cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/cmake/utils.cmake -------------------------------------------------------------------------------- /common/Shaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/common/Shaper.cpp -------------------------------------------------------------------------------- /common/daq.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/common/daq.fbs -------------------------------------------------------------------------------- /common/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/common/helper.h -------------------------------------------------------------------------------- /common/internal_vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/common/internal_vars.cpp -------------------------------------------------------------------------------- /common/internal_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/common/internal_vars.h -------------------------------------------------------------------------------- /common/log_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/common/log_helper.h -------------------------------------------------------------------------------- /dnnlibrary/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/CMakeLists.txt -------------------------------------------------------------------------------- /dnnlibrary/DaqReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/DaqReader.cpp -------------------------------------------------------------------------------- /dnnlibrary/JavaWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/JavaWrapper.cpp -------------------------------------------------------------------------------- /dnnlibrary/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/Model.cpp -------------------------------------------------------------------------------- /dnnlibrary/ModelBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/ModelBuilder.cpp -------------------------------------------------------------------------------- /dnnlibrary/ModelBuilderImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/ModelBuilderImpl.cpp -------------------------------------------------------------------------------- /dnnlibrary/NeuralNetworksWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/NeuralNetworksWrapper.cpp -------------------------------------------------------------------------------- /dnnlibrary/OnnxReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/OnnxReader.cpp -------------------------------------------------------------------------------- /dnnlibrary/android_log_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/android_log_helper.h -------------------------------------------------------------------------------- /dnnlibrary/flatbuffers_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/flatbuffers_helper.h -------------------------------------------------------------------------------- /dnnlibrary/jni_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/jni_handle.h -------------------------------------------------------------------------------- /dnnlibrary/nnapi_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/nnapi_helper.h -------------------------------------------------------------------------------- /dnnlibrary/nnapi_implementation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/dnnlibrary/nnapi_implementation.cc -------------------------------------------------------------------------------- /generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/generate_code.py -------------------------------------------------------------------------------- /images/DNNLibrary-huaweihonorv10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/images/DNNLibrary-huaweihonorv10.png -------------------------------------------------------------------------------- /images/DNNLibrary-oneplus6t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/images/DNNLibrary-oneplus6t.png -------------------------------------------------------------------------------- /images/DNNLibrary-rk3399.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/images/DNNLibrary-rk3399.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/screenshot_camera_mnist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/images/screenshot_camera_mnist.png -------------------------------------------------------------------------------- /images/screenshot_image_mnist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/images/screenshot_image_mnist.png -------------------------------------------------------------------------------- /images/screenshot_image_resnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/images/screenshot_image_resnet.png -------------------------------------------------------------------------------- /images/screenshot_quant8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/images/screenshot_quant8.png -------------------------------------------------------------------------------- /images/screenshot_raw_nnapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/images/screenshot_raw_nnapi.png -------------------------------------------------------------------------------- /include/common/Shaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/common/Shaper.h -------------------------------------------------------------------------------- /include/common/StrKeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/common/StrKeyMap.h -------------------------------------------------------------------------------- /include/common/daq_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/common/daq_generated.h -------------------------------------------------------------------------------- /include/common/data_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/common/data_types.h -------------------------------------------------------------------------------- /include/common/expected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/common/expected.hpp -------------------------------------------------------------------------------- /include/common/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/common/optional.h -------------------------------------------------------------------------------- /include/dnnlibrary/DaqReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/dnnlibrary/DaqReader.h -------------------------------------------------------------------------------- /include/dnnlibrary/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/dnnlibrary/Device.h -------------------------------------------------------------------------------- /include/dnnlibrary/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/dnnlibrary/Model.h -------------------------------------------------------------------------------- /include/dnnlibrary/ModelBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/dnnlibrary/ModelBuilder.h -------------------------------------------------------------------------------- /include/dnnlibrary/NeuralNetworksTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/dnnlibrary/NeuralNetworksTypes.h -------------------------------------------------------------------------------- /include/dnnlibrary/NeuralNetworksWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/dnnlibrary/NeuralNetworksWrapper.h -------------------------------------------------------------------------------- /include/dnnlibrary/OnnxReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/dnnlibrary/OnnxReader.h -------------------------------------------------------------------------------- /include/dnnlibrary/nnapi_implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/dnnlibrary/nnapi_implementation.h -------------------------------------------------------------------------------- /include/tools/onnx2daq/OnnxConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/include/tools/onnx2daq/OnnxConverter.h -------------------------------------------------------------------------------- /ops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/ops.yml -------------------------------------------------------------------------------- /quant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/quant.py -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/getsupportednodes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/getsupportednodes/CMakeLists.txt -------------------------------------------------------------------------------- /tools/getsupportednodes/getsupportednodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/getsupportednodes/getsupportednodes.cpp -------------------------------------------------------------------------------- /tools/onnx2daq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/CMakeLists.txt -------------------------------------------------------------------------------- /tools/onnx2daq/NodeAttrHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/NodeAttrHelper.cpp -------------------------------------------------------------------------------- /tools/onnx2daq/NodeAttrHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/NodeAttrHelper.h -------------------------------------------------------------------------------- /tools/onnx2daq/OnnxConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/OnnxConverter.cpp -------------------------------------------------------------------------------- /tools/onnx2daq/OnnxConverterImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/OnnxConverterImpl.cpp -------------------------------------------------------------------------------- /tools/onnx2daq/onnx2daq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/onnx2daq.cpp -------------------------------------------------------------------------------- /tools/onnx2daq/python/onnx2daq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/python/onnx2daq/__init__.py -------------------------------------------------------------------------------- /tools/onnx2daq/python/onnx2daq/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/python/onnx2daq/__main__.py -------------------------------------------------------------------------------- /tools/onnx2daq/python/onnx2daq/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/python/onnx2daq/convert.py -------------------------------------------------------------------------------- /tools/onnx2daq/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/python/setup.py -------------------------------------------------------------------------------- /tools/onnx2daq/pywrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DNNLibrary/HEAD/tools/onnx2daq/pywrapper.cpp --------------------------------------------------------------------------------