├── .gitattributes ├── .gitmodules ├── .tf_configure.bazelrc ├── Dockerfile ├── Dockerfile.tf ├── README.md ├── android_runtime ├── benchmark_model_dg ├── benchmark_model_only_gpu ├── hexagon_nn_skel_v1.20.0.1.run ├── libhexagon_interface.so ├── libhexagon_nn_skel.so ├── libhexagon_nn_skel_v65.so └── libhexagon_nn_skel_v66.so ├── configs ├── mi │ ├── EN-B5-C.yaml │ ├── EN-B5-CD.yaml │ ├── EN-B5-CG.yaml │ ├── EN-B5-D.yaml │ ├── EN-B5-DG.yaml │ ├── EN-B5-G.yaml │ ├── EN-L4-C.yaml │ ├── EN-L4-CD.yaml │ ├── EN-L4-CG.yaml │ ├── EN-L4-D.yaml │ ├── EN-L4-DG.yaml │ ├── EN-L4-G.yaml │ ├── R-34-C.yaml │ ├── R-34-CD.yaml │ ├── R-34-CDG.yaml │ ├── R-34-CG.yaml │ ├── R-34-D.yaml │ ├── R-34-DG.yaml │ ├── R-34-G.yaml │ ├── R-50-C.yaml │ ├── R-50-CD.yaml │ ├── R-50-CDG.yaml │ ├── R-50-CG.yaml │ ├── R-50-D.yaml │ ├── R-50-DG.yaml │ ├── R-50-G.yaml │ ├── RX-1.6-C.yaml │ ├── RX-1.6-CD.yaml │ ├── RX-1.6-CDG.yaml │ ├── RX-1.6-CG.yaml │ ├── RX-1.6-D.yaml │ ├── RX-1.6-DG.yaml │ ├── RX-1.6-G.yaml │ ├── RX-4-C.yaml │ ├── RX-4-CD.yaml │ ├── RX-4-CDG.yaml │ ├── RX-4-CG.yaml │ ├── RX-4-D.yaml │ ├── RX-4-DG.yaml │ └── RX-4-G.yaml └── pixel │ ├── EN-B5-C.yaml │ ├── EN-B5-CG.yaml │ ├── EN-B5-G.yaml │ ├── EN-L4-C.yaml │ ├── EN-L4-CG.yaml │ ├── EN-L4-G.yaml │ ├── R-34-C.yaml │ ├── R-34-CG.yaml │ ├── R-34-G.yaml │ ├── R-50-C.yaml │ ├── R-50-CG.yaml │ └── R-50-G.yaml ├── sample_output ├── EN-B5-CD-ACC.log ├── correctness.log └── result.csv ├── src └── tools │ ├── eval_acc.py │ ├── eval_lat_acc.sh │ ├── extract_ILSVRC.sh │ ├── images │ ├── ILSVRC2012_val_00000001.JPEG │ ├── ILSVRC2012_val_00000002.JPEG │ ├── ILSVRC2012_val_00000003.JPEG │ ├── ILSVRC2012_val_00000004.JPEG │ ├── ILSVRC2012_val_00000005.JPEG │ ├── ILSVRC2012_val_00000006.JPEG │ ├── ILSVRC2012_val_00000007.JPEG │ ├── ILSVRC2012_val_00000008.JPEG │ ├── ILSVRC2012_val_00000009.JPEG │ └── ILSVRC2012_val_00000010.JPEG │ └── run_pipeline.py ├── tf_patch ├── apply_patch.sh └── thread_pool.h └── tutorial └── end2end-pipeline.mp4 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tf_configure.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/.tf_configure.bazelrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/Dockerfile.tf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/README.md -------------------------------------------------------------------------------- /android_runtime/benchmark_model_dg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/android_runtime/benchmark_model_dg -------------------------------------------------------------------------------- /android_runtime/benchmark_model_only_gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/android_runtime/benchmark_model_only_gpu -------------------------------------------------------------------------------- /android_runtime/hexagon_nn_skel_v1.20.0.1.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/android_runtime/hexagon_nn_skel_v1.20.0.1.run -------------------------------------------------------------------------------- /android_runtime/libhexagon_interface.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/android_runtime/libhexagon_interface.so -------------------------------------------------------------------------------- /android_runtime/libhexagon_nn_skel.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/android_runtime/libhexagon_nn_skel.so -------------------------------------------------------------------------------- /android_runtime/libhexagon_nn_skel_v65.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/android_runtime/libhexagon_nn_skel_v65.so -------------------------------------------------------------------------------- /android_runtime/libhexagon_nn_skel_v66.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/android_runtime/libhexagon_nn_skel_v66.so -------------------------------------------------------------------------------- /configs/mi/EN-B5-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-B5-C.yaml -------------------------------------------------------------------------------- /configs/mi/EN-B5-CD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-B5-CD.yaml -------------------------------------------------------------------------------- /configs/mi/EN-B5-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-B5-CG.yaml -------------------------------------------------------------------------------- /configs/mi/EN-B5-D.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-B5-D.yaml -------------------------------------------------------------------------------- /configs/mi/EN-B5-DG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-B5-DG.yaml -------------------------------------------------------------------------------- /configs/mi/EN-B5-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-B5-G.yaml -------------------------------------------------------------------------------- /configs/mi/EN-L4-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-L4-C.yaml -------------------------------------------------------------------------------- /configs/mi/EN-L4-CD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-L4-CD.yaml -------------------------------------------------------------------------------- /configs/mi/EN-L4-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-L4-CG.yaml -------------------------------------------------------------------------------- /configs/mi/EN-L4-D.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-L4-D.yaml -------------------------------------------------------------------------------- /configs/mi/EN-L4-DG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-L4-DG.yaml -------------------------------------------------------------------------------- /configs/mi/EN-L4-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/EN-L4-G.yaml -------------------------------------------------------------------------------- /configs/mi/R-34-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-34-C.yaml -------------------------------------------------------------------------------- /configs/mi/R-34-CD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-34-CD.yaml -------------------------------------------------------------------------------- /configs/mi/R-34-CDG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-34-CDG.yaml -------------------------------------------------------------------------------- /configs/mi/R-34-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-34-CG.yaml -------------------------------------------------------------------------------- /configs/mi/R-34-D.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-34-D.yaml -------------------------------------------------------------------------------- /configs/mi/R-34-DG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-34-DG.yaml -------------------------------------------------------------------------------- /configs/mi/R-34-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-34-G.yaml -------------------------------------------------------------------------------- /configs/mi/R-50-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-50-C.yaml -------------------------------------------------------------------------------- /configs/mi/R-50-CD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-50-CD.yaml -------------------------------------------------------------------------------- /configs/mi/R-50-CDG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-50-CDG.yaml -------------------------------------------------------------------------------- /configs/mi/R-50-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-50-CG.yaml -------------------------------------------------------------------------------- /configs/mi/R-50-D.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-50-D.yaml -------------------------------------------------------------------------------- /configs/mi/R-50-DG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-50-DG.yaml -------------------------------------------------------------------------------- /configs/mi/R-50-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/R-50-G.yaml -------------------------------------------------------------------------------- /configs/mi/RX-1.6-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-1.6-C.yaml -------------------------------------------------------------------------------- /configs/mi/RX-1.6-CD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-1.6-CD.yaml -------------------------------------------------------------------------------- /configs/mi/RX-1.6-CDG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-1.6-CDG.yaml -------------------------------------------------------------------------------- /configs/mi/RX-1.6-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-1.6-CG.yaml -------------------------------------------------------------------------------- /configs/mi/RX-1.6-D.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-1.6-D.yaml -------------------------------------------------------------------------------- /configs/mi/RX-1.6-DG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-1.6-DG.yaml -------------------------------------------------------------------------------- /configs/mi/RX-1.6-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-1.6-G.yaml -------------------------------------------------------------------------------- /configs/mi/RX-4-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-4-C.yaml -------------------------------------------------------------------------------- /configs/mi/RX-4-CD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-4-CD.yaml -------------------------------------------------------------------------------- /configs/mi/RX-4-CDG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-4-CDG.yaml -------------------------------------------------------------------------------- /configs/mi/RX-4-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-4-CG.yaml -------------------------------------------------------------------------------- /configs/mi/RX-4-D.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-4-D.yaml -------------------------------------------------------------------------------- /configs/mi/RX-4-DG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-4-DG.yaml -------------------------------------------------------------------------------- /configs/mi/RX-4-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/mi/RX-4-G.yaml -------------------------------------------------------------------------------- /configs/pixel/EN-B5-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/EN-B5-C.yaml -------------------------------------------------------------------------------- /configs/pixel/EN-B5-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/EN-B5-CG.yaml -------------------------------------------------------------------------------- /configs/pixel/EN-B5-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/EN-B5-G.yaml -------------------------------------------------------------------------------- /configs/pixel/EN-L4-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/EN-L4-C.yaml -------------------------------------------------------------------------------- /configs/pixel/EN-L4-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/EN-L4-CG.yaml -------------------------------------------------------------------------------- /configs/pixel/EN-L4-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/EN-L4-G.yaml -------------------------------------------------------------------------------- /configs/pixel/R-34-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/R-34-C.yaml -------------------------------------------------------------------------------- /configs/pixel/R-34-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/R-34-CG.yaml -------------------------------------------------------------------------------- /configs/pixel/R-34-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/R-34-G.yaml -------------------------------------------------------------------------------- /configs/pixel/R-50-C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/R-50-C.yaml -------------------------------------------------------------------------------- /configs/pixel/R-50-CG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/R-50-CG.yaml -------------------------------------------------------------------------------- /configs/pixel/R-50-G.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/configs/pixel/R-50-G.yaml -------------------------------------------------------------------------------- /sample_output/EN-B5-CD-ACC.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/sample_output/EN-B5-CD-ACC.log -------------------------------------------------------------------------------- /sample_output/correctness.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/sample_output/correctness.log -------------------------------------------------------------------------------- /sample_output/result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/sample_output/result.csv -------------------------------------------------------------------------------- /src/tools/eval_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/eval_acc.py -------------------------------------------------------------------------------- /src/tools/eval_lat_acc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/eval_lat_acc.sh -------------------------------------------------------------------------------- /src/tools/extract_ILSVRC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/extract_ILSVRC.sh -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000001.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000001.JPEG -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000002.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000002.JPEG -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000003.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000003.JPEG -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000004.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000004.JPEG -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000005.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000005.JPEG -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000006.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000006.JPEG -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000007.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000007.JPEG -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000008.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000008.JPEG -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000009.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000009.JPEG -------------------------------------------------------------------------------- /src/tools/images/ILSVRC2012_val_00000010.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/images/ILSVRC2012_val_00000010.JPEG -------------------------------------------------------------------------------- /src/tools/run_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/src/tools/run_pipeline.py -------------------------------------------------------------------------------- /tf_patch/apply_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/tf_patch/apply_patch.sh -------------------------------------------------------------------------------- /tf_patch/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/tf_patch/thread_pool.h -------------------------------------------------------------------------------- /tutorial/end2end-pipeline.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caoting-dotcom/multiBranchModel/HEAD/tutorial/end2end-pipeline.mp4 --------------------------------------------------------------------------------