Commit 5e756d3f6a695603a31b2be7461b783dbdccb047

Con Kolivas 2012-07-24T20:53:05

Don't make opt_scrypt mandatory blocking with opencl code.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/driver-opencl.c b/driver-opencl.c
index eafdd5d..b22017c 100644
--- a/driver-opencl.c
+++ b/driver-opencl.c
@@ -1484,7 +1484,7 @@ static int64_t opencl_scanhash(struct thr_info *thr, struct work *work,
 	unsigned int threads;
 	int64_t hashes;
 
-	if (gpu->dynamic || opt_scrypt)
+	if (gpu->dynamic)
 		blocking = CL_TRUE;
 	else
 		blocking = CL_FALSE;