From 6274fbe7277f2be573af07320eb2f093c19d538f Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 30 Mar 2012 09:32:42 +1100 Subject: [PATCH] Change the preferred vector width to 1 for Tahiti only, not all poclbm kernels. --- ocl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ocl.c b/ocl.c index a15fc455..c1c6aaf7 100644 --- a/ocl.c +++ b/ocl.c @@ -365,16 +365,16 @@ _clState *initCl(unsigned int gpu, char *name, size_t nameSize) /* For some reason 2 vectors is still better even if the card says * otherwise, and many cards lie about their max so use 256 as max - * unless explicitly set on the command line. */ - if (preferred_vwidth > 2) + * unless explicitly set on the command line. Tahiti prefers 1 */ + if (strstr(name, "Tahiti")) + preferred_vwidth = 1; + else if (preferred_vwidth > 2) preferred_vwidth = 2; switch (clState->chosen_kernel) { case KL_POCLBM: strcpy(filename, POCLBM_KERNNAME".cl"); strcpy(binaryfilename, POCLBM_KERNNAME); - /* This kernel prefers to not use vectors */ - preferred_vwidth = 1; break; case KL_PHATK: strcpy(filename, PHATK_KERNNAME".cl");