Author

Topic: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. - page 807. (Read 2347664 times)

sp_
legendary
Activity: 2954
Merit: 1087
Team Black developer
testing without -X parameter ...

edit ... same results ...

dont forget sp - this is the opensource one - NOT - your private kernel thats running here ... Smiley ...

-------

[2016-01-13 23:09:02] GPU #2: GeForce GTX 980 Ti, 11955 (T= 68C F= 49% C=1354/3304)
[2016-01-13 23:09:02] Stratum difficulty set to 4
[2016-01-13 23:09:02] GPU #3: GeForce GTX 980 Ti, 11930 (T= 69C F= 50% C=1354/3304)
[2016-01-13 23:09:02] accepted: 231/231 (100.00%), 47802 kH/s yes!
[2016-01-13 23:09:02] accepted: 232/232 (100.00%), 47802 kH/s yes!
[2016-01-13 23:09:02] GPU #0: GeForce GTX 980 Ti, 11969 (T= 67C F= 48% C=1366/3304)
[2016-01-13 23:09:03] GPU #0: GeForce GTX 980 Ti, 11937 (T= 67C F= 48% C=1366/3304)
[2016-01-13 23:09:03] accepted: 233/233 (100.00%), 47799 kH/s yes!
[2016-01-13 23:09:03] accepted: 234/234 (100.00%), 47799 kH/s yes!

-------

obviously this is just a quick test - so it will increase over time ( which is why i test for 25mins at a time ) but the hashrate is no where near what you are stating it can do ...

am i doing something wrong on my end? ...

#crysx

Here is the private on the gtx g1 970: (+100 on the core)

Could be a problem with the 64bit buids / linux?

in the scanhash_lyra2v2

if (strstr(props.name, "980 Ti"))
{
   intensity = 256 * 256 * 18;
   tpb = 10;
}

try to change find the optimal tpb by chinging to to 7,8,9,10, 11, 12, 13 ,14,15



Code:

extern "C" int scanhash_lyra2v2(int thr_id, uint32_t *pdata,
const uint32_t *ptarget, uint32_t max_nonce,
unsigned long *hashes_done)
{
const uint32_t first_nonce = pdata[19];
uint32_t intensity = 256 * 256 * 8;
uint32_t tpb = 18;

cudaDeviceProp props;
cudaGetDeviceProperties(&props, device_map[thr_id]);

if (strstr(props.name, "970"))
{
tpb = 10;
intensity = 256 * 256 * 18;
}
else if (strstr(props.name, "980 Ti"))
{
intensity = 256 * 256 * 18;
tpb = 10;
}


sp_
legendary
Activity: 2954
Merit: 1087
Team Black developer
True, no sourcecode, but oh well, i don't care.
never tried 640 before. Will try that later (Ethereum is more profitable anyway)

You should care because when the miner says 20MHASH and the pool say 15MHASH you need to lower the intensity or fix the sourcecode.

full member
Activity: 229
Merit: 100
Looking good over here at Nvidia.

Here are some X11 & Quark results over @ the AMD side

X11 (Fury X, Stock clock)




Quark (Fury X, Stock Clock)




But where is the sourcecode? Wink

XI 1024 is not usable on my cards. They report lower at the pool with the kochur bins.. Use -X 640 instead..

True, no sourcecode, but oh well, i don't care.

never tried 640 before. Will try that later (Ethereum is more profitable anyway)
legendary
Activity: 2940
Merit: 1091
--- ChainWorks Industries ---
anyway - below are the lyra2v2 results im getting - using -X 15 commandline parameter as the only 'extra' parameter ...

-------

[2016-01-13 22:54:14] lyra2rev2.eu.nicehash.com:3347/ lyra2v2 block 548979
[2016-01-13 22:54:14] GPU #2: GeForce GTX 980 Ti, 11951 (T= 68C F= 53% C=1354/3304)
[2016-01-13 22:54:14] GPU #0: GeForce GTX 980 Ti, 11942 (T= 67C F= 49% C=1366/3304)
[2016-01-13 22:54:14] GPU #3: GeForce GTX 980 Ti, 11953 (T= 69C F= 52% C=1354/3304)
[2016-01-13 22:54:14] GPU #1: GeForce GTX 980 Ti, 11968 (T= 70C F= 57% C=1366/3304)
[2016-01-13 22:54:16] GPU #2: GeForce GTX 980 Ti, 11947 (T= 68C F= 53% C=1354/3304)
[2016-01-13 22:54:16] accepted: 719/719 (100.00%), 47800 kH/s yes!


something is wrong. I get 16MHASH + on the same card on windows. Run without the -X parameter.

ok ...

testing without -X parameter ...

edit ... same results ...

dont forget sp - this is the opensource one - NOT - your private kernel thats running here ... Smiley ...

-------

[2016-01-13 23:09:02] GPU #2: GeForce GTX 980 Ti, 11955 (T= 68C F= 49% C=1354/3304)
[2016-01-13 23:09:02] Stratum difficulty set to 4
[2016-01-13 23:09:02] GPU #3: GeForce GTX 980 Ti, 11930 (T= 69C F= 50% C=1354/3304)
[2016-01-13 23:09:02] accepted: 231/231 (100.00%), 47802 kH/s yes!
[2016-01-13 23:09:02] accepted: 232/232 (100.00%), 47802 kH/s yes!
[2016-01-13 23:09:02] GPU #0: GeForce GTX 980 Ti, 11969 (T= 67C F= 48% C=1366/3304)
[2016-01-13 23:09:03] GPU #0: GeForce GTX 980 Ti, 11937 (T= 67C F= 48% C=1366/3304)
[2016-01-13 23:09:03] accepted: 233/233 (100.00%), 47799 kH/s yes!
[2016-01-13 23:09:03] accepted: 234/234 (100.00%), 47799 kH/s yes!

-------

obviously this is just a quick test - so it will increase over time ( which is why i test for 25mins at a time ) but the hashrate is no where near what you are stating it can do ...

am i doing something wrong on my end? ...

#crysx
sp_
legendary
Activity: 2954
Merit: 1087
Team Black developer
Looking good over here at Nvidia.

Here are some X11 & Quark results over @ the AMD side

X11 (Fury X, Stock clock)




Quark (Fury X, Stock Clock)




But where is the sourcecode? Wink

XI 1024 is not usable on my cards. They report lower at the pool with the kochur bins.. Use -X 640 instead..
sp_
legendary
Activity: 2954
Merit: 1087
Team Black developer
anyway - below are the lyra2v2 results im getting - using -X 15 commandline parameter as the only 'extra' parameter ...

-------

[2016-01-13 22:54:14] lyra2rev2.eu.nicehash.com:3347/ lyra2v2 block 548979
[2016-01-13 22:54:14] GPU #2: GeForce GTX 980 Ti, 11951 (T= 68C F= 53% C=1354/3304)
[2016-01-13 22:54:14] GPU #0: GeForce GTX 980 Ti, 11942 (T= 67C F= 49% C=1366/3304)
[2016-01-13 22:54:14] GPU #3: GeForce GTX 980 Ti, 11953 (T= 69C F= 52% C=1354/3304)
[2016-01-13 22:54:14] GPU #1: GeForce GTX 980 Ti, 11968 (T= 70C F= 57% C=1366/3304)
[2016-01-13 22:54:16] GPU #2: GeForce GTX 980 Ti, 11947 (T= 68C F= 53% C=1354/3304)
[2016-01-13 22:54:16] accepted: 719/719 (100.00%), 47800 kH/s yes!


something is wrong. I get 16MHASH + on the same card on windows. Run without the -X parameter.
full member
Activity: 229
Merit: 100
Looking good over here at Nvidia.


Here are some X11 & Quark results over @ the AMD side


X11 (Fury X, Stock clock)

X11 Image


Quark (Fury X, Stock Clock)

Quark Image
sp_
legendary
Activity: 2954
Merit: 1087
Team Black developer
sp.....I can't get r78 zip to open.





And here is a couple of beers.


Transaction ID: d3088e0d25037723d9d540fe4c8e7b94fe6813786c63258ac5e1fc7b69b7fb12-000
r78 was uploaded in win zip not 7 zip.

you need to open the file in the 7-zip file manager

legendary
Activity: 1764
Merit: 1024
Cryptsy just went under... FTC is now pointless to mine as that's where all the volume was. Unfortunately I lost about .4 BTC over there. Literally closed it right as I was figuring out a altcoin to withdraw it with.
So, Neo has basically been scrapped. I kinda doubt the FTC market will recover as that's a huge blow to a rather small and successful coin. As far as improvements go Ethereum and x11 is where it's currently at (as long as there is notable improvements in x11).
Just another day in Cryptos... off to Ethereum I go.

Feathercoin Markets
USD  Main Markets
#   Source   Pair   Volume (24h)   Price   Volume (%)   Updated
1   Bittrex   FTC/BTC   $ 542   $ 0.002995   80.15 %   Recently
2   BTER   FTC/BTC   $ 133   $ 0.003380   19.72 %   Recently
3   BTER   FTC/CNY   $ 1   $ 0.003041   0.13 %   Recently
4   Vircurex   FTC/BTC   $ 0   $ 0.003154   0.00 %   Recently
5   bitebi9   FTC/CNY   $ 0   $ 0.003566   0.00 %   Recently
6   Bittylicious   FTC/GBP   $ 0   $ 0.005348   0.00 %   Recently
7   Cryptonit   FTC/BTC   $ 0   $ 0.003368   0.00 %   339 hours ago
8   LiteBit.eu   FTC/EUR   $ 0   $ 0.002929   0.00 %   Recently


Yup, Coinmarket pulled Cryptsy this last weekend. There was about 10BTC worth of activity on Cryptsy. Things will probably level out over the next weekend. People already predumped BTC in preperation for a BTC crash. I kinda doubt BTC will crash, but it's probably going to end up back at about 420 when NA wakes up today.
legendary
Activity: 2940
Merit: 1091
--- ChainWorks Industries ---
Yesssssssssssss that's what I was working on crysx. Grin

what hash do you normally get with them? ...

and what settings? ... im only using -X 15 parameter with them ... would that be the optimal on lyra2v2? ...

#crysx
I don't use any parameters. I just oc at 1345 mhz on ALL my nvidia cards.. no matter what type...... any higher and they become unstable.
I only have 2 980ti's...but I get about 4x what a 750ti gets.......it would be higher if we can get the mem clock up to 7 gig hz and then oc the mem Smiley
My guess  on quark ..a guess...... is 2mh/s more.

kool ...

so im pretty much on the mark then ... actually a little below as sp pointed out - but that isnt a great deal in the situation that im testing for ...

still - two of these cards are pretty damned good ... with these results - i cant wait to test the extreme ones ... there is two of those cards and they are supposed to perform better ... they are MUCH bigger cards than the gigabyte 980ti g1 cards ... and heavier too ... the heatsinks on the gigabyte 980ti extreme cards are massive ...

anyway - below are the lyra2v2 results im getting - using -X 15 commandline parameter as the only 'extra' parameter ...

-------

[2016-01-13 22:54:14] lyra2rev2.eu.nicehash.com:3347/ lyra2v2 block 548979
[2016-01-13 22:54:14] GPU #2: GeForce GTX 980 Ti, 11951 (T= 68C F= 53% C=1354/3304)
[2016-01-13 22:54:14] GPU #0: GeForce GTX 980 Ti, 11942 (T= 67C F= 49% C=1366/3304)
[2016-01-13 22:54:14] GPU #3: GeForce GTX 980 Ti, 11953 (T= 69C F= 52% C=1354/3304)
[2016-01-13 22:54:14] GPU #1: GeForce GTX 980 Ti, 11968 (T= 70C F= 57% C=1366/3304)
[2016-01-13 22:54:16] GPU #2: GeForce GTX 980 Ti, 11947 (T= 68C F= 53% C=1354/3304)
[2016-01-13 22:54:16] accepted: 719/719 (100.00%), 47800 kH/s yes!
[2016-01-13 22:54:17] GPU #1: GeForce GTX 980 Ti, 11966 (T= 71C F= 57% C=1366/3304)
[2016-01-13 22:54:18] accepted: 720/720 (100.00%), 47801 kH/s yes!
[2016-01-13 22:54:30] GPU #3: GeForce GTX 980 Ti, 11952 (T= 68C F= 52% C=1354/3304)
[2016-01-13 22:54:31] accepted: 721/721 (100.00%), 47801 kH/s yes!
[2016-01-13 22:54:33] GPU #0: GeForce GTX 980 Ti, 11943 (T= 67C F= 49% C=1366/3304)
[2016-01-13 22:54:33] accepted: 722/722 (100.00%), 47801 kH/s yes!
[2016-01-13 22:54:43] GPU #2: GeForce GTX 980 Ti, 11952 (T= 68C F= 52% C=1354/3304)
[2016-01-13 22:54:44] GPU #0: GeForce GTX 980 Ti, 11942 (T= 67C F= 49% C=1366/3304)
[2016-01-13 22:54:44] accepted: 723/723 (100.00%), 47802 kH/s yes!
[2016-01-13 22:54:44] accepted: 724/724 (100.00%), 47802 kH/s yes!
[2016-01-13 22:54:47] lyra2rev2.eu.nicehash.com:3347/ lyra2v2 block 548980
[2016-01-13 22:54:47] GPU #0: GeForce GTX 980 Ti, 11939 (T= 67C F= 49% C=1366/3304)
[2016-01-13 22:54:47] GPU #1: GeForce GTX 980 Ti, 11968 (T= 71C F= 57% C=1366/3304)
[2016-01-13 22:54:47] GPU #2: GeForce GTX 980 Ti, 11948 (T= 68C F= 52% C=1354/3304)
[2016-01-13 22:54:47] GPU #3: GeForce GTX 980 Ti, 11952 (T= 69C F= 52% C=1354/3304)
[2016-01-13 22:55:02] GPU #0: GeForce GTX 980 Ti, 11942 (T= 67C F= 49% C=1366/3304)
[2016-01-13 22:55:02] accepted: 725/725 (100.00%), 47802 kH/s yes!
[2016-01-13 22:55:03] GPU #3: GeForce GTX 980 Ti, 11952 (T= 69C F= 53% C=1354/3304)
[2016-01-13 22:55:03] accepted: 726/726 (100.00%), 47803 kH/s yes!
[2016-01-13 22:55:04] GPU #3: GeForce GTX 980 Ti, 11941 (T= 69C F= 53% C=1354/3304)
[2016-01-13 22:55:04] accepted: 727/727 (100.00%), 47802 kH/s yes!
[2016-01-13 22:55:05] GPU #2: GeForce GTX 980 Ti, 11952 (T= 68C F= 52% C=1354/3304)
[2016-01-13 22:55:05] accepted: 728/728 (100.00%), 47802 kH/s yes!
[2016-01-13 22:55:10] GPU #3: GeForce GTX 980 Ti, 11951 (T= 69C F= 53% C=1354/3304)
[2016-01-13 22:55:10] accepted: 729/729 (100.00%), 47802 kH/s yes!
[2016-01-13 22:55:17] GPU #1: GeForce GTX 980 Ti, 11968 (T= 71C F= 57% C=1366/3304)
[2016-01-13 22:55:20] GPU #0: GeForce GTX 980 Ti, 11942 (T= 67C F= 50% C=1366/3304)
[2016-01-13 22:55:21] accepted: 730/730 (100.00%), 47803 kH/s yes!
[2016-01-13 22:55:24] GPU #0: GeForce GTX 980 Ti, 11942 (T= 67C F= 50% C=1366/3304)
[2016-01-13 22:55:25] accepted: 731/731 (100.00%), 47803 kH/s yes!
[2016-01-13 22:55:28] GPU #2: GeForce GTX 980 Ti, 11951 (T= 68C F= 52% C=1354/3304)
[2016-01-13 22:55:28] accepted: 732/732 (100.00%), 47803 kH/s yes!
[2016-01-13 22:55:31] GPU #1: GeForce GTX 980 Ti, 11967 (T= 71C F= 57% C=1366/3304)
[2016-01-13 22:55:32] GPU #3: GeForce GTX 980 Ti, 11953 (T= 69C F= 53% C=1354/3304)
[2016-01-13 22:55:32] accepted: 733/733 (100.00%), 47804 kH/s yes!
[2016-01-13 22:55:32] accepted: 734/734 (100.00%), 47804 kH/s yes!
[2016-01-13 22:55:38] GPU #0: GeForce GTX 980 Ti, 11942 (T= 67C F= 50% C=1366/3304)
[2016-01-13 22:55:39] accepted: 735/735 (100.00%), 47804 kH/s yes!
[2016-01-13 22:55:39] GPU #3: GeForce GTX 980 Ti, 11953 (T= 68C F= 53% C=1354/3304)
[2016-01-13 22:55:40] accepted: 736/736 (100.00%), 47804 kH/s yes!
[2016-01-13 22:55:42] lyra2rev2.eu.nicehash.com:3347/ lyra2v2 block 548981

-------

i now want to move ALL of the miners to these cards ... damn ...

#crysx
legendary
Activity: 3164
Merit: 1003
Yesssssssssssss that's what I was working on crysx. Grin

what hash do you normally get with them? ...

and what settings? ... im only using -X 15 parameter with them ... would that be the optimal on lyra2v2? ...

#crysx
I don't use any parameters. I just oc at 1345 mhz on ALL my nvidia cards.. no matter what type...... any higher and they become unstable.
I only have 2 980ti's...but I get about 4x what a 750ti gets.......it would be higher if we can get the mem clock up to 7 gig hz and then oc the mem Smiley
My guess  on quark ..a guess...... is 2mh/s more.
legendary
Activity: 2940
Merit: 1091
--- ChainWorks Industries ---
Yesssssssssssss that's what I was working on crysx. Grin

what hash do you normally get with them? ...

and what settings? ... im only using -X 15 parameter with them ... would that be the optimal on lyra2v2? ...

#crysx
legendary
Activity: 3164
Merit: 1003
Yesssssssssssss that's what I was working on crysx. Grin
legendary
Activity: 2940
Merit: 1091
--- ChainWorks Industries ---
hi all ...

quark results below ... based on intensity -i 22.9 as the only other commandline parameter ...

-------

[2016-01-13 22:12:25] quark.eu.nicehash.com:3345/ quark block 2694552
[2016-01-13 22:12:25] GPU #3: GeForce GTX 980 Ti, 27885 (T= 74C F= 67% C=1341/3304)
[2016-01-13 22:12:25] GPU #2: GeForce GTX 980 Ti, 28250 (T= 76C F= 71% C=1341/3304)
[2016-01-13 22:12:25] GPU #0: GeForce GTX 980 Ti, 27994 (T= 74C F= 68% C=1341/3304)
[2016-01-13 22:12:25] GPU #1: GeForce GTX 980 Ti, 28159 (T= 78C F= 77% C=1354/3304)
[2016-01-13 22:12:28] GPU #1: GeForce GTX 980 Ti, 28051 (T= 79C F= 77% C=1341/3304)
[2016-01-13 22:12:28] accepted: 523/523 (100.00%), 111754 kH/s yes!
[2016-01-13 22:12:29] GPU #1: GeForce GTX 980 Ti, 28195 (T= 79C F= 77% C=1354/3304)
[2016-01-13 22:12:30] accepted: 524/524 (100.00%), 111759 kH/s yes!
[2016-01-13 22:12:30] GPU #1: GeForce GTX 980 Ti, 28085 (T= 78C F= 77% C=1341/3304)
[2016-01-13 22:12:31] accepted: 525/525 (100.00%), 111760 kH/s yes!
[2016-01-13 22:12:40] GPU #3: GeForce GTX 980 Ti, 27842 (T= 75C F= 67% C=1341/3304)
[2016-01-13 22:12:40] GPU #0: GeForce GTX 980 Ti, 28003 (T= 74C F= 67% C=1354/3304)
[2016-01-13 22:12:40] GPU #2: GeForce GTX 980 Ti, 27949 (T= 76C F= 71% C=1341/3304)
[2016-01-13 22:12:44] GPU #1: GeForce GTX 980 Ti, 28085 (T= 79C F= 77% C=1341/3304)
[2016-01-13 22:12:44] GPU #2: GeForce GTX 980 Ti, 27924 (T= 76C F= 71% C=1341/3304)
[2016-01-13 22:12:44] GPU #0: GeForce GTX 980 Ti, 28033 (T= 74C F= 67% C=1354/3304)
[2016-01-13 22:12:44] GPU #3: GeForce GTX 980 Ti, 27817 (T= 75C F= 67% C=1341/3304)
[2016-01-13 22:12:44] GPU #1: GeForce GTX 980 Ti, 27845 (T= 79C F= 77% C=1341/3304)
[2016-01-13 22:12:45] GPU #2: GeForce GTX 980 Ti, 27542 (T= 76C F= 71% C=1354/3304)
[2016-01-13 22:12:45] GPU #0: GeForce GTX 980 Ti, 27680 (T= 74C F= 67% C=1354/3304)
[2016-01-13 22:12:45] GPU #3: GeForce GTX 980 Ti, 27616 (T= 75C F= 67% C=1341/3304)
[2016-01-13 22:12:47] GPU #1: GeForce GTX 980 Ti, 28087 (T= 79C F= 77% C=1341/3304)
[2016-01-13 22:12:48] accepted: 526/526 (100.00%), 111738 kH/s yes!
[2016-01-13 22:12:50] GPU #0: GeForce GTX 980 Ti, 27949 (T= 74C F= 67% C=1354/3304)
[2016-01-13 22:12:50] accepted: 527/527 (100.00%), 111743 kH/s yes!
[2016-01-13 22:12:53] GPU #1: GeForce GTX 980 Ti, 28036 (T= 79C F= 77% C=1341/3304)
[2016-01-13 22:12:53] accepted: 528/528 (100.00%), 111747 kH/s yes!
[2016-01-13 22:12:57] GPU #2: GeForce GTX 980 Ti, 27889 (T= 76C F= 71% C=13

-------

thats some heavy hash there ...

now for lyra2v2 ...

#crysx
hero member
Activity: 840
Merit: 1000
Since there is huge problems on cryptsy, is there any other trade market safe?
Thanks

Cryptsy is a joke but I'm not laughing because I have over 0.5BTC in pending withdrawals Roll Eyes Their support is also a joke... Always the same shitty responses.
I never had any single problem with bittrex on the other hand.



+1 and i would suggest you join there slack, which has advantage over IRC that impersonation is difficult as you can always check email id to confirm id. there slack is connected to IRC so its all in one place. They are only exchange i can vouch for.

Here is the link to join there slack http://slack.bittrex.com/
legendary
Activity: 3164
Merit: 1003
sp.....I can't get r78 zip to open.





And here is a couple of beers.


Transaction ID: d3088e0d25037723d9d540fe4c8e7b94fe6813786c63258ac5e1fc7b69b7fb12-000
r78 was uploaded in win zip not 7 zip.
sp_
legendary
Activity: 2954
Merit: 1087
Team Black developer
Cryptsy just went under... FTC is now pointless to mine as that's where all the volume was. Unfortunately I lost about .4 BTC over there. Literally closed it right as I was figuring out a altcoin to withdraw it with.
So, Neo has basically been scrapped. I kinda doubt the FTC market will recover as that's a huge blow to a rather small and successful coin. As far as improvements go Ethereum and x11 is where it's currently at (as long as there is notable improvements in x11).
Just another day in Cryptos... off to Ethereum I go.

Feathercoin Markets
USD  Main Markets
#   Source   Pair   Volume (24h)   Price   Volume (%)   Updated
1   Bittrex   FTC/BTC   $ 542   $ 0.002995   80.15 %   Recently
2   BTER   FTC/BTC   $ 133   $ 0.003380   19.72 %   Recently
3   BTER   FTC/CNY   $ 1   $ 0.003041   0.13 %   Recently
4   Vircurex   FTC/BTC   $ 0   $ 0.003154   0.00 %   Recently
5   bitebi9   FTC/CNY   $ 0   $ 0.003566   0.00 %   Recently
6   Bittylicious   FTC/GBP   $ 0   $ 0.005348   0.00 %   Recently
7   Cryptonit   FTC/BTC   $ 0   $ 0.003368   0.00 %   339 hours ago
8   LiteBit.eu   FTC/EUR   $ 0   $ 0.002929   0.00 %   Recently
legendary
Activity: 2940
Merit: 1091
--- ChainWorks Industries ---
[2016-01-13 21:13:52] accepted: 320/329 (97.26%), 50642 kH/s yes!
[2016-01-13 21:13:54] mining-ace.granitecoin.com:6001/ x11 block 253698
[2016-01-13 21:13:54] GPU #0: GeForce GTX 980 Ti, 12731 (T= 71C F= 59% C=1366/3304)
[2016-01-13 21:13:54] GPU #3: GeForce GTX 980 Ti, 12586 (T= 71C F= 60% C=1341/3304)
[2016-01-13 21:13:54] GPU #1: GeForce GTX 980 Ti, 12637 (T= 74C F= 66% C=1354/3304)
[2016-01-13 21:13:54] GPU #2: GeForce GTX 980 Ti, 12713 (T= 72C F= 62% C=1354/3304)
[2016-01-13 21:13:55] mining-ace.granitecoin.com:6001/ x11 block 102208
[2016-01-13 21:13:55] GPU #0: GeForce GTX 980 Ti, 12727 (T= 70C F= 59% C=1366/3304)
[2016-01-13 21:13:55] GPU #3: GeForce GTX 980 Ti, 12548 (T= 71C F= 60% C=1341/3304)
[2016-01-13 21:13:55] GPU #1: GeForce GTX 980 Ti, 12636 (T= 74C F= 66% C=1354/3304)
[2016-01-13 21:13:55] GPU #2: GeForce GTX 980 Ti, 12732 (T= 72C F= 62% C=1354/3304)
[2016-01-13 21:14:15] GPU #1: GeForce GTX 980 Ti, 12644 (T= 74C F= 66% C=1354/3304)
[2016-01-13 21:14:16] accepted: 321/330 (97.27%), 50647 kH/s yes!
[2016-01-13 21:14:24] GPU #0: GeForce GTX 980 Ti, 12716 (T= 71C F= 59% C=1366/3304)
[2016-01-13 21:14:24] accepted: 322/331 (97.28%), 50647 kH/s yes!
-------
these cards are beasts ... the only addition to the commandline is -X 29 on x11 algo ...
switching to quark now and will test for 25mins ...
#crysx

I have the same card myself. some of your cards are trottling. You see that only one card has a core clock of 1366 while the others have been downclocked.
It could be because of heat.In windows you can use the gpuz tool to find out why the boost clock is reduced.

Try to run the lyra2v2 algo and you will see that your cards are always at 1366MHz


ill test lyra2v2 after this quark test finishes ... a few minutes left ... it probably is heat - even with air conditioning and fans - the temperature here is HOT ... summer is a killer in adelaide ( and most of australia for that matter ) ...

im going to miss this machine when he takes it though ... i used to only look at numbers like these from others here and wonder if i would get to see them ... now i have first hand ... really nice cards - though if i can control the throttling - it would be better ...

#crysx
legendary
Activity: 1764
Merit: 1024
Cryptsy just went under... FTC is now pointless to mine as that's where all the volume was. Unfortunately I lost about .4 BTC over there. Literally closed it right as I was figuring out a altcoin to withdraw it with.

So, Neo has basically been scrapped. I kinda doubt the FTC market will recover as that's a huge blow to a rather small and successful coin. As far as improvements go Ethereum and x11 is where it's currently at (as long as there is notable improvements in x11).

Just another day in Cryptos... off to Ethereum I go.
legendary
Activity: 2940
Merit: 1091
--- ChainWorks Industries ---
I soon have a new private version ready for the donators with more hash, x11-x15 / qubit. (more boost on compute 5.2)
Windows exe.
I will follow the same path I did with the spreadcoin miner. The more people who buy it, the more hash you get..
i would be happy to pay a little more for the linux version sp ...
in fact - if its a LOT more hash - then id be happy to pay quite a bit more than 0.1btc ...
but ...
#crysx

I have 3 or 4 who wants a linux version, so you are not alone. But for now Windows only.. When I reach +10% on x11 I might do a linux version.

that would be worth it ...

ive been looking for some major optimizations to come for x11 for a long time - as you know personally from my requests previously ...

tanx mate ...

#crysx
Jump to: