Browse Source

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

nfactor-troky
Con Kolivas 12 years ago
parent
commit
d0f18e83ad
  1. 3
      ocl.c

3
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;

Loading…
Cancel
Save