Post
Topic
Board Announcements (Altcoins)
Re: [ANN][RLT] Roulettecoin | POW | New algo | No premine | GPU miner
by
dga
on 08/05/2014, 16:12:33 UTC
Nope, I created wallet, CPU miner and GPU miner for this coin. And the bugs. Lots of bugs. Cry
Block explorer is coming soon too (with even more bugs).

Bug report.  I believe that in gpuminer roulette.cpp line 120:

cl::Buffer countersCL(*m.context, CL_MEM_READ_WRITE | CL_MEM_USE_HOST_PTR, (16 + 1) * sizeof(*countersH), count\
ersH, &err);

is allocating the wrong size buffer.  (16+1)*sizeof(*countersH) is only 17 ints, but countersCL is used with one set of counters per iteration, and so should be (16*16)*sizeof(*countersH)

(or simply sizeof(countersH))