Post
Topic
Board Mining support
Re: [GUIDE] GridSeed GC3355 5 Chip Setup/power/windows/linux/rpi by UnicornHasher
by
BotwinBG
on 02/04/2014, 17:54:50 UTC

Would you mind posting an updated screencap with a longer run time and details on your config?  That's a remarkable hashrate for only 744mhz...

-EMoomjean

There you go , http://imgur.com/eRItNxl .

So how did you achieve that?

And are you using

https://github.com/dtbartle/cgminer-gc3355/commits/master

or

https://github.com/girnyau/cgminer-gc3355/commits/master

?
(BTW, anybody knows which one of the two cgminer repos is better?)

Seems to be a calculation/display error. Try setting chips variable to 8 , like --gridseed-options=freq=744,chips=8,per_chip_stats=1 for instance instead of 5. 8 seems to be hardcoded max for some reason and speed is calculated based on that.

Don't quite speak C , but it looks like in https://github.com/girnyau/cgminer-gc3355/blob/master/driver-gridseed.c
info->chips = MAX(0, MIN(8, info->chips));
and
return GRIDSEED_HASH_SPEED * (double)elapsed_ms * (double)(info->freq * info->chips);
are responsible for that.
Number 8 is present in the gridseed version of cgminer as well. No idea why, I found it by mistake the other day when playing with chips variable.