Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner - a new litecoin mining application [Windows/Linux]
by
AizenSou
on 01/05/2014, 11:59:24 UTC

Thanks for your fast update again. It works great with Kepler & Maxwell cards, but unfortunately not with Fermi cards. (I mean jackpot algo).
I got
780 - 6Mhs
680 - 3.7Mhs
750ti - 2.9Mhs

our stream compaction code currently makes use of the __shfl intrinsics (warp shuffle) and that has a minimum requirement of Compute 3.0, sorry.

I might try to add some emulation code later. It will be a bit slower though.


Ok Christian, no need to sorry. You have provided us enough. I just want to report. My 580 can go back to mine groestl. Still have the best performance with ccminer5 for Fermi cards.

Btw, I have tried to fix the bugs with config file in ccminer and the thing I came up with is by deleting these two if clause in parse_config and parse_cmdline function. Ugly quick fix but it works:

if (opt_algo == ALGO_HEAVY && opt_vote == 9999) {
fprintf(stderr, "%s: Heavycoin hash requires block reward vote parameter (see --vote)\n",
argv[0]);
show_usage_and_exit(1);
}

With this the config file could be read but a few options are unavailable e.g. --quiet.
I will try to read the code and find the bugs too when I have time. Luckily your code are readable and I understand German too. Wink

Regards,