1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 04:24:19 +00:00

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

This commit is contained in:
Con Kolivas 2011-08-23 10:28:30 +10:00
parent cc9d5f5927
commit 02e126f42d

View File

@ -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 */