├── .vscode └── settings.json ├── Makefile ├── README.md ├── data.txt ├── include └── opencv2.4.9 │ ├── opencv │ ├── cv.h │ ├── cv.hpp │ ├── cvaux.h │ ├── cvaux.hpp │ ├── cvwimage.h │ ├── cxcore.h │ ├── cxcore.hpp │ ├── cxeigen.hpp │ ├── cxmisc.h │ ├── highgui.h │ └── ml.h │ └── opencv2 │ ├── core │ ├── affine.hpp │ ├── core.hpp │ ├── core_c.h │ ├── cuda_devptrs.hpp │ ├── devmem2d.hpp │ ├── eigen.hpp │ ├── gpumat.hpp │ ├── internal.hpp │ ├── mat.hpp │ ├── opengl_interop.hpp │ ├── opengl_interop_deprecated.hpp │ ├── operations.hpp │ ├── types_c.h │ ├── version.hpp │ └── wimage.hpp │ ├── highgui │ ├── cap_ios.h │ ├── highgui.hpp │ ├── highgui_c.h │ └── ios.h │ ├── imgproc │ ├── imgproc.hpp │ ├── imgproc_c.h │ └── types_c.h │ ├── ml │ └── ml.hpp │ ├── opencv.hpp │ ├── opencv_modules.hpp │ └── video │ ├── background_segm.hpp │ ├── tracking.hpp │ └── video.hpp ├── libgomp.so.1 ├── library └── opencv2.4.9 │ ├── libjpeg.a │ ├── libopencv_core.a │ ├── libopencv_highgui.a │ ├── libopencv_imgproc.a │ └── libz.a ├── src ├── activation.h ├── batchnorm.h ├── boxFilter.cpp ├── boxFilter.h ├── boxFilter.o ├── boxFilterBetter.cpp ├── boxFilterBetter.h ├── boxFilterBetter.o ├── catch.h ├── convolution1x1s1.h ├── convolution_3x3s1.h ├── convolution_3x3s1_winograd.h ├── convolution_3x3s1dw.h ├── convolution_3x3s2.h ├── convolution_3x3s2dw.h ├── convolution_sgemm.h ├── innerproduct.h ├── maxpool2x2s2.h ├── padding.h ├── unit_test.cpp ├── unit_test_activation.cpp ├── unit_test_bn.cpp ├── unit_test_bn.o ├── unit_test_conv.cpp ├── unit_test_conv.o ├── unit_test_conv1x1.cpp ├── unit_test_conv_winograd.cpp ├── unit_test_convdw.cpp ├── unit_test_fc.cpp ├── unit_test_maxpool.cpp ├── unit_test_padding.cpp ├── unit_test_sgemm.cpp └── unit_test_sgemm.o ├── test_data ├── .gitignore ├── BatchNorm.txt ├── conv1x1s1.txt ├── conv2dDW3x3s1.txt ├── conv2dDW3x3s2.txt ├── conv3x3s1_pytorch.txt ├── conv3x3s1_winograd.txt ├── conv3x3s2_pytorcg.txt └── conv_sgemm.txt ├── test_img └── car.jpg └── unit_test /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/README.md -------------------------------------------------------------------------------- /data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/data.txt -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/cv.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/cv.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/cvaux.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/cvaux.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/cvwimage.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/cxcore.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/cxcore.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/cxmisc.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/highgui.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv/ml.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/core.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/core_c.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/cuda_devptrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/cuda_devptrs.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/devmem2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/devmem2d.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/gpumat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/gpumat.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/internal.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/opengl_interop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/opengl_interop.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/opengl_interop_deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/opengl_interop_deprecated.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/types_c.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/version.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/highgui/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/highgui/cap_ios.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/highgui/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/highgui/ios.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/opencv.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /include/opencv2.4.9/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/include/opencv2.4.9/opencv2/video/video.hpp -------------------------------------------------------------------------------- /libgomp.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/libgomp.so.1 -------------------------------------------------------------------------------- /library/opencv2.4.9/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/library/opencv2.4.9/libjpeg.a -------------------------------------------------------------------------------- /library/opencv2.4.9/libopencv_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/library/opencv2.4.9/libopencv_core.a -------------------------------------------------------------------------------- /library/opencv2.4.9/libopencv_highgui.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/library/opencv2.4.9/libopencv_highgui.a -------------------------------------------------------------------------------- /library/opencv2.4.9/libopencv_imgproc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/library/opencv2.4.9/libopencv_imgproc.a -------------------------------------------------------------------------------- /library/opencv2.4.9/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/library/opencv2.4.9/libz.a -------------------------------------------------------------------------------- /src/activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/activation.h -------------------------------------------------------------------------------- /src/batchnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/batchnorm.h -------------------------------------------------------------------------------- /src/boxFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/boxFilter.cpp -------------------------------------------------------------------------------- /src/boxFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/boxFilter.h -------------------------------------------------------------------------------- /src/boxFilter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/boxFilter.o -------------------------------------------------------------------------------- /src/boxFilterBetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/boxFilterBetter.cpp -------------------------------------------------------------------------------- /src/boxFilterBetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/boxFilterBetter.h -------------------------------------------------------------------------------- /src/boxFilterBetter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/boxFilterBetter.o -------------------------------------------------------------------------------- /src/catch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/catch.h -------------------------------------------------------------------------------- /src/convolution1x1s1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/convolution1x1s1.h -------------------------------------------------------------------------------- /src/convolution_3x3s1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/convolution_3x3s1.h -------------------------------------------------------------------------------- /src/convolution_3x3s1_winograd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/convolution_3x3s1_winograd.h -------------------------------------------------------------------------------- /src/convolution_3x3s1dw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/convolution_3x3s1dw.h -------------------------------------------------------------------------------- /src/convolution_3x3s2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/convolution_3x3s2.h -------------------------------------------------------------------------------- /src/convolution_3x3s2dw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/convolution_3x3s2dw.h -------------------------------------------------------------------------------- /src/convolution_sgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/convolution_sgemm.h -------------------------------------------------------------------------------- /src/innerproduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/innerproduct.h -------------------------------------------------------------------------------- /src/maxpool2x2s2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/maxpool2x2s2.h -------------------------------------------------------------------------------- /src/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/padding.h -------------------------------------------------------------------------------- /src/unit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test.cpp -------------------------------------------------------------------------------- /src/unit_test_activation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_activation.cpp -------------------------------------------------------------------------------- /src/unit_test_bn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_bn.cpp -------------------------------------------------------------------------------- /src/unit_test_bn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_bn.o -------------------------------------------------------------------------------- /src/unit_test_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_conv.cpp -------------------------------------------------------------------------------- /src/unit_test_conv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_conv.o -------------------------------------------------------------------------------- /src/unit_test_conv1x1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_conv1x1.cpp -------------------------------------------------------------------------------- /src/unit_test_conv_winograd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_conv_winograd.cpp -------------------------------------------------------------------------------- /src/unit_test_convdw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_convdw.cpp -------------------------------------------------------------------------------- /src/unit_test_fc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_fc.cpp -------------------------------------------------------------------------------- /src/unit_test_maxpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_maxpool.cpp -------------------------------------------------------------------------------- /src/unit_test_padding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_padding.cpp -------------------------------------------------------------------------------- /src/unit_test_sgemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_sgemm.cpp -------------------------------------------------------------------------------- /src/unit_test_sgemm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/src/unit_test_sgemm.o -------------------------------------------------------------------------------- /test_data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_data/.gitignore -------------------------------------------------------------------------------- /test_data/BatchNorm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_data/BatchNorm.txt -------------------------------------------------------------------------------- /test_data/conv1x1s1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_data/conv1x1s1.txt -------------------------------------------------------------------------------- /test_data/conv2dDW3x3s1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_data/conv2dDW3x3s1.txt -------------------------------------------------------------------------------- /test_data/conv2dDW3x3s2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_data/conv2dDW3x3s2.txt -------------------------------------------------------------------------------- /test_data/conv3x3s1_pytorch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_data/conv3x3s1_pytorch.txt -------------------------------------------------------------------------------- /test_data/conv3x3s1_winograd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_data/conv3x3s1_winograd.txt -------------------------------------------------------------------------------- /test_data/conv3x3s2_pytorcg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_data/conv3x3s2_pytorcg.txt -------------------------------------------------------------------------------- /test_data/conv_sgemm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_data/conv_sgemm.txt -------------------------------------------------------------------------------- /test_img/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/test_img/car.jpg -------------------------------------------------------------------------------- /unit_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BBuf/ArmNeonOptimization/HEAD/unit_test --------------------------------------------------------------------------------