├── .gitignore ├── LICENSE ├── README.md ├── acl_test.cc ├── data └── kernels.cl ├── install.sh ├── layer-test ├── README.md ├── conv2d.cc ├── depth.cc ├── gemm.cc ├── test_conv2d.py ├── test_dense.py ├── test_depth.py ├── util.cc └── util.h ├── mali_imagenet_bench.py ├── mxnet_test.py ├── results.png ├── run_test.sh └── spatial.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/README.md -------------------------------------------------------------------------------- /acl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/acl_test.cc -------------------------------------------------------------------------------- /data/kernels.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/data/kernels.cl -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/install.sh -------------------------------------------------------------------------------- /layer-test/README.md: -------------------------------------------------------------------------------- 1 | # Test script for layer-wise benchmark 2 | 3 | to be documented... 4 | 5 | -------------------------------------------------------------------------------- /layer-test/conv2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/layer-test/conv2d.cc -------------------------------------------------------------------------------- /layer-test/depth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/layer-test/depth.cc -------------------------------------------------------------------------------- /layer-test/gemm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/layer-test/gemm.cc -------------------------------------------------------------------------------- /layer-test/test_conv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/layer-test/test_conv2d.py -------------------------------------------------------------------------------- /layer-test/test_dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/layer-test/test_dense.py -------------------------------------------------------------------------------- /layer-test/test_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/layer-test/test_depth.py -------------------------------------------------------------------------------- /layer-test/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/layer-test/util.cc -------------------------------------------------------------------------------- /layer-test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/layer-test/util.h -------------------------------------------------------------------------------- /mali_imagenet_bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/mali_imagenet_bench.py -------------------------------------------------------------------------------- /mxnet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/mxnet_test.py -------------------------------------------------------------------------------- /results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/results.png -------------------------------------------------------------------------------- /run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/run_test.sh -------------------------------------------------------------------------------- /spatial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merrymercy/tvm-mali/HEAD/spatial.png --------------------------------------------------------------------------------