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
thanks. but where it comes from ? why it is not 1024x1024x64 ?
is it e.g. maximum x-, y-, or z-dimension of a grid of thread blocks or something like that ? hardware related ?