1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-03-10 04:31:03 +00:00

Put sanity limit on work size since some nvidia fail :(

This commit is contained in:
ckolivas 2011-06-29 09:24:38 +10:00 committed by Con Kolivas
parent f490143a9a
commit 1dfbe60353

3
ocl.c
View File

@ -303,6 +303,9 @@ _clState *initCl(unsigned int gpu, char *name, size_t nameSize)
}
if (opt_debug)
applog(LOG_DEBUG, "Max work group size reported %d", clState->max_work_size);
/* Some nvidia cards report 1024 but fail when set larger than 512 !? */
if (clState->max_work_size > 512)
clState->max_work_size = 512;
/////////////////////////////////////////////////////////////////
// Load CL file, build CL program object, create CL kernel object