├── .Rhistory ├── .gitignore ├── LICENSE ├── README.md ├── array_addition ├── array_addition.cl └── array_addition.cpp ├── cached_matrix_multiplication ├── cached_matrix_multiplication.cl └── cached_matrix_multiplication.cpp ├── hello_world ├── hello_world.cl └── hello_world.cpp ├── image_filtering ├── CImg.h ├── image_filtering.cl ├── image_filtering.cpp └── input_img.jpg ├── matrix_multiplication ├── matrix_multiplication.cl └── matrix_multiplication.cpp └── print_info └── print_info.cpp /.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/README.md -------------------------------------------------------------------------------- /array_addition/array_addition.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/array_addition/array_addition.cl -------------------------------------------------------------------------------- /array_addition/array_addition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/array_addition/array_addition.cpp -------------------------------------------------------------------------------- /cached_matrix_multiplication/cached_matrix_multiplication.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/cached_matrix_multiplication/cached_matrix_multiplication.cl -------------------------------------------------------------------------------- /cached_matrix_multiplication/cached_matrix_multiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/cached_matrix_multiplication/cached_matrix_multiplication.cpp -------------------------------------------------------------------------------- /hello_world/hello_world.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/hello_world/hello_world.cl -------------------------------------------------------------------------------- /hello_world/hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/hello_world/hello_world.cpp -------------------------------------------------------------------------------- /image_filtering/CImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/image_filtering/CImg.h -------------------------------------------------------------------------------- /image_filtering/image_filtering.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/image_filtering/image_filtering.cl -------------------------------------------------------------------------------- /image_filtering/image_filtering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/image_filtering/image_filtering.cpp -------------------------------------------------------------------------------- /image_filtering/input_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/image_filtering/input_img.jpg -------------------------------------------------------------------------------- /matrix_multiplication/matrix_multiplication.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/matrix_multiplication/matrix_multiplication.cl -------------------------------------------------------------------------------- /matrix_multiplication/matrix_multiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/matrix_multiplication/matrix_multiplication.cpp -------------------------------------------------------------------------------- /print_info/print_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-meneses/great-opencl-examples/HEAD/print_info/print_info.cpp --------------------------------------------------------------------------------