Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
cayars
on 14/08/2014, 17:28:23 UTC
what is
Code:
const int throughput = 256*256*8;
in the ccminer code
and why it is what it is ?
I mean 256x256x8 ?

thanks.

Same thing as writing = 524288;

256*256*8 just makes it easier from a dev standpoint to understand where the number came from.

throughput is usually the 2nd parameter passed to most functions that use it (threads).

Carlo