├── .gitignore ├── Makefile ├── README.md ├── bench_channels.sh ├── bench_filters.sh ├── bench_image_size.sh ├── clhelp.cpp ├── clhelp.h ├── compare_outputs.cpp ├── extract_perf.py ├── fft_convolution.cpp ├── format_image.cpp ├── gen_problem.py ├── naive_convolution.cpp ├── recreate_image.cpp ├── test_outputs.sh ├── winograd.cl ├── winograd.cpp ├── winograd.py ├── winograd_gpu.cpp └── winograd_openmp.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/README.md -------------------------------------------------------------------------------- /bench_channels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/bench_channels.sh -------------------------------------------------------------------------------- /bench_filters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/bench_filters.sh -------------------------------------------------------------------------------- /bench_image_size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/bench_image_size.sh -------------------------------------------------------------------------------- /clhelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/clhelp.cpp -------------------------------------------------------------------------------- /clhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/clhelp.h -------------------------------------------------------------------------------- /compare_outputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/compare_outputs.cpp -------------------------------------------------------------------------------- /extract_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/extract_perf.py -------------------------------------------------------------------------------- /fft_convolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/fft_convolution.cpp -------------------------------------------------------------------------------- /format_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/format_image.cpp -------------------------------------------------------------------------------- /gen_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/gen_problem.py -------------------------------------------------------------------------------- /naive_convolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/naive_convolution.cpp -------------------------------------------------------------------------------- /recreate_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/recreate_image.cpp -------------------------------------------------------------------------------- /test_outputs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/test_outputs.sh -------------------------------------------------------------------------------- /winograd.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/winograd.cl -------------------------------------------------------------------------------- /winograd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/winograd.cpp -------------------------------------------------------------------------------- /winograd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/winograd.py -------------------------------------------------------------------------------- /winograd_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/winograd_gpu.cpp -------------------------------------------------------------------------------- /winograd_openmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dorthyluu/cs194-winograd/HEAD/winograd_openmp.cpp --------------------------------------------------------------------------------