1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 20:44:19 +00:00

Allow different kernels to be used by different devices and fix the logic fail of overcorrecting on last commit with !strstr.

This commit is contained in:
ckolivas 2012-02-10 10:23:06 +11:00 committed by Con Kolivas
parent 196e8a0f76
commit 4822cca72b

16
ocl.c
View File

@ -356,20 +356,22 @@ _clState *initCl(unsigned int gpu, char *name, size_t nameSize)
* have otherwise created. The filename is:
* name + kernelname +/i bitalign + v + vectors + w + work_size + sizeof(long) + .bin
*/
enum cl_kernel this_kernel;
char binaryfilename[255];
char numbuf[10];
char filename[16];
char numbuf[10];
if (chosen_kernel == KL_NONE) {
if (!strstr(name, "Tahiti"))
chosen_kernel = KL_DIAKGCN;
if (strstr(name, "Tahiti"))
this_kernel = KL_DIAKGCN;
else if (!clState->hasBitAlign)
chosen_kernel = KL_POCLBM;
this_kernel = KL_POCLBM;
else
chosen_kernel = KL_PHATK;
}
this_kernel = KL_PHATK;
} else
this_kernel = chosen_kernel;
switch (chosen_kernel) {
switch (this_kernel) {
case KL_DIAKGCN:
strcpy(filename, DIAKGCN_KERNNAME".cl");
strcpy(binaryfilename, DIAKGCN_KERNNAME);