I'm still not having any luck mining anything, but Scrypt coins with the latest compiled build. Christian, please tell me what on Earth I am doing wrong with my Fermi card? Danke schon! I really need my 560Ti to be able to bring in some profit as well.
Currently the F kernel doesn't support a lookup_gap, so it's a bad choice for scrypt-jane, unless you are aiming for low N-factor coins.
So using the X-kernel...
./cudaminer -H 2 --algo=scrypt-jane -C 2 -L 2 -l X68x2 -b 2048 -i 0 -m 1 -o stratum+tcp://yac.coinmine.pl:9088 -O ...
[2014-01-28 18:01:58] 1 miner threads started, using 'scrypt-jane' algorithm.
[2014-01-28 18:01:59] Nfactor is 14 (N=32768)!
[2014-01-28 18:01:59] GPU #0: GeForce GTX 660 Ti with compute capability 3.0
[2014-01-28 18:01:59] GPU #0: interactive: 0, tex-cache: 2D, single-alloc: 1
[2014-01-28 18:01:59] GPU #0: 8 hashes / 16.0 MB per warp.
[2014-01-28 18:01:59] GPU #0: using launch configuration X68x2
[2014-01-28 18:02:01] GPU #0: GeForce GTX 660 Ti, 2.24 khash/s
...
[2014-01-28 18:04:25] GPU #0: GeForce GTX 660 Ti, 2.79 khash/s
[2014-01-28 18:04:25] accepted: 1/1 (100.00%), 2.79 khash/s (yay!!!)
[2014-01-28 18:04:28] GPU #0: GeForce GTX 660 Ti, 2.43 khash/s
[2014-01-28 18:04:28] accepted: 2/2 (100.00%), 2.43 khash/s (yay!!!)
Now using the F-kernel... (note that lookup_gap support is not present the, hence -L 1)
./cudaminer -H 2 --algo=scrypt-jane -C 2 -L 1 -l F21x1 -b 2048 -i 0 -m 1 -o stratum+tcp://yac.coinmine.pl:9088 -O ...
[2014-01-28 18:08:18] 1 miner threads started, using 'scrypt-jane' algorithm.
[2014-01-28 18:08:18] Starting Stratum on stratum+tcp://yac.coinmine.pl:9088
[2014-01-28 18:08:18] Stratum detected new block
[2014-01-28 18:08:19] Nfactor is 14 (N=32768)!
[2014-01-28 18:08:19] GPU #0: GeForce GTX 660 Ti with compute capability 3.0
[2014-01-28 18:08:19] GPU #0: interactive: 0, tex-cache: 2D, single-alloc: 1
[2014-01-28 18:08:19] GPU #0: 32 hashes / 128.0 MB per warp.
[2014-01-28 18:08:19] GPU #0: using launch configuration F21x1
[2014-01-28 18:08:23] GPU #0: GeForce GTX 660 Ti, 1.37 khash/s
[2014-01-28 18:08:27] GPU #0: GeForce GTX 660 Ti, 1.31 khash/s
[2014-01-28 18:09:04] GPU #0: GeForce GTX 660 Ti, 1.43 khash/s
[2014-01-28 18:09:04] accepted: 1/1 (100.00%), 1.43 khash/s (yay!!!)
This test was done on Linux using a Kepler device, but running Fermi kernels. My code is OK.
Your build is broken.
The Fermi and X kernels are now compiled for compute_10 (sm_10) and should basically
run on every CUDA capable device, including legacy stuff like nVidia 8800 GTX.
Christian