what is
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