Browse Source

Do not round up the bufsize to the maximum allocable with scrypt.

Con Kolivas 13 years ago
parent
commit
d0f18e83ad
1 changed files with 1 additions and 2 deletions
  1. 1 2
      ocl.c

+ 1 - 2
ocl.c

@@ -793,8 +793,7 @@ built:
 		if (bufsize > cgpu->max_alloc) {
 		if (bufsize > cgpu->max_alloc) {
 			applog(LOG_WARNING, "Maximum buffer memory device %d supports says %u", gpu, cgpu->max_alloc);
 			applog(LOG_WARNING, "Maximum buffer memory device %d supports says %u", gpu, cgpu->max_alloc);
 			applog(LOG_WARNING, "Your scrypt settings come to %u", bufsize);
 			applog(LOG_WARNING, "Your scrypt settings come to %u", bufsize);
-		} else
-			bufsize = cgpu->max_alloc;
+		}
 		applog(LOG_DEBUG, "Creating scrypt buffer sized %u", bufsize);
 		applog(LOG_DEBUG, "Creating scrypt buffer sized %u", bufsize);
 		clState->padbufsize = bufsize;
 		clState->padbufsize = bufsize;