Commit 06f39506582ca466099146e44f24afacd935d006

Con Kolivas 2011-06-26T08:49:50

Fix typo which prevented BFI INT patch working on multi-GPUs.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/ocl.c b/ocl.c
index bb49375..65a1d57 100644
--- a/ocl.c
+++ b/ocl.c
@@ -425,7 +425,7 @@ _clState *initCl(unsigned int gpu, char *name, size_t nameSize)
 			return NULL;
 		}
 
-		clState->program = clCreateProgramWithBinary(clState->context, 1, &devices[gpu], binary_sizes, (const unsigned char **)binaries, &status, NULL);
+		clState->program = clCreateProgramWithBinary(clState->context, 1, &devices[gpu], &binary_sizes[gpu], (const unsigned char **)&binaries[gpu], &status, NULL);
 		if(status != CL_SUCCESS) 
 		{   
 			applog(LOG_ERR, "Error: Loading Binary into cl_program (clCreateProgramWithBinary)");