├── AUTHORS ├── CL └── cl.hpp ├── ChangeLog ├── LICENSE ├── Makefile ├── Makefile-darwin ├── README.md ├── clkernels.cpp ├── gpustress-cli.cpp ├── gpustress-core.cpp ├── gpustress-core.h ├── gpustress-gui.cpp ├── gpustress-gui.rc ├── gpustressKernel.cl ├── gpustressKernel3.cl ├── gpustressPW.cl ├── icon.ico ├── icon.xpm ├── include └── CL │ ├── cl.h │ ├── cl.hpp │ ├── cl_d3d10.h │ ├── cl_ext.h │ ├── cl_gl.h │ ├── cl_gl_ext.h │ ├── cl_platform.h │ └── opencl.h └── makefile.msvc /AUTHORS: -------------------------------------------------------------------------------- 1 | Mateusz Szpakowski (matszpk@interia.pl) 2 | 3 | Contributors: 4 | Felipe Machado - port for MacOSX -------------------------------------------------------------------------------- /CL/cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/CL/cl.hpp -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/Makefile-darwin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/README.md -------------------------------------------------------------------------------- /clkernels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/clkernels.cpp -------------------------------------------------------------------------------- /gpustress-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/gpustress-cli.cpp -------------------------------------------------------------------------------- /gpustress-core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/gpustress-core.cpp -------------------------------------------------------------------------------- /gpustress-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/gpustress-core.h -------------------------------------------------------------------------------- /gpustress-gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/gpustress-gui.cpp -------------------------------------------------------------------------------- /gpustress-gui.rc: -------------------------------------------------------------------------------- 1 | 101 ICON DISCARDABLE "icon.ico" 2 | -------------------------------------------------------------------------------- /gpustressKernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/gpustressKernel.cl -------------------------------------------------------------------------------- /gpustressKernel3.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/gpustressKernel3.cl -------------------------------------------------------------------------------- /gpustressPW.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/gpustressPW.cl -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/icon.ico -------------------------------------------------------------------------------- /icon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/icon.xpm -------------------------------------------------------------------------------- /include/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/include/CL/cl.h -------------------------------------------------------------------------------- /include/CL/cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/include/CL/cl.hpp -------------------------------------------------------------------------------- /include/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/include/CL/cl_d3d10.h -------------------------------------------------------------------------------- /include/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/include/CL/cl_ext.h -------------------------------------------------------------------------------- /include/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/include/CL/cl_gl.h -------------------------------------------------------------------------------- /include/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/include/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /include/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/include/CL/cl_platform.h -------------------------------------------------------------------------------- /include/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/include/CL/opencl.h -------------------------------------------------------------------------------- /makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matszpk/clgpustress/HEAD/makefile.msvc --------------------------------------------------------------------------------