Skip to content

Commit

Permalink
Allow different kernels to be used by different devices and fix the l…
Browse files Browse the repository at this point in the history
…ogic fail of overcorrecting on last commit with !strstr.
  • Loading branch information
ckolivas committed Feb 11, 2012
1 parent 196e8a0 commit 4822cca
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions ocl.c
Expand Up @@ -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);
Expand Down

0 comments on commit 4822cca

Please sign in to comment.