Use WGSIZE=256 for dot for compatability with AMD

This commit is contained in:
James Price 2016-10-24 12:51:01 +01:00
parent c9b3d07b84
commit cfc1aba2c0

View File

@ -21,7 +21,7 @@
#define IMPLEMENTATION_STRING "OpenCL"
// Local work-group size for dot kernel
#define WGSIZE 1024
#define WGSIZE 256
template <class T>
class OCLStream : public Stream<T>