Browse Source

The worksize was unintentionally changed back to 4k by mistake, this caused a slowdown.

Con Kolivas 14 years ago
parent
commit
02e126f42d
1 changed files with 1 additions and 2 deletions
  1. 1 2
      findnonce.h

+ 1 - 2
findnonce.h

@@ -4,8 +4,7 @@
 #include "config.h"
 
 #define MAXTHREADS (0xFFFFFFFEULL)
-/* Maximum worksize 4k to match page size */
-#define MAXBUFFERS (0xFFFF)
+#define MAXBUFFERS (0xFF)
 #define BUFFERSIZE (sizeof(uint32_t) * MAXBUFFERS)
 #define FOUND (0x80)
 /* #define NFLAG (0x7F) Just for reference */