├── Makefile ├── README.md ├── kernel.cl ├── main.c ├── timer.c └── timer.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csehydrogen/Winograd-OpenCL/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Winograd-OpenCL 2 | -------------------------------------------------------------------------------- /kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csehydrogen/Winograd-OpenCL/HEAD/kernel.cl -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csehydrogen/Winograd-OpenCL/HEAD/main.c -------------------------------------------------------------------------------- /timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csehydrogen/Winograd-OpenCL/HEAD/timer.c -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csehydrogen/Winograd-OpenCL/HEAD/timer.h --------------------------------------------------------------------------------