Bitcoin Forum
June 22, 2024, 04:24:50 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 [775] 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 ... 1135 »
  Print  
Author Topic: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]  (Read 3426878 times)
tsiv
Full Member
***
Offline Offline

Activity: 137
Merit: 100


View Profile
June 12, 2014, 04:55:40 PM
 #15481

Great work! marvelous first few posts!

building in windows right now......

Is that a burning house I smell..?
cryptomines
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
June 12, 2014, 05:02:45 PM
 #15482

Great work! marvelous first few posts!

building in windows right now......

Is that a burning house I smell..?

lol, no, still compiling. I shoulda used my other machine. I have fire extinguishers at the ready  Wink
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
June 12, 2014, 05:08:26 PM
 #15483

Aaand it's out: https://github.com/tsiv/ccminer

Insert the standard "if your house burns down, totally not my fault" disclaimer here.

Windows build should be fine as well, at least I managed to compile it myself. I won't be releasing any binaries, feel free to do so yourselves though.

Christ gonna release killer goretl version probably before or during weekend. The new version will upgrade x11 speed gtx 750 ti to 2.8 - 3. Maybe u should wait for the new release and implement your code which will increase x13 speed significantly. Or maybe both of u can combine code and do a combine release ? So the new version will have killer goretl + x13. That is pretty exciting.

Should be an easy modification, right now my X13 is using the same code for the first 11 algos as the original X11. At the simplest it just takes a recompile after throwing in the new groestl version.

no reason to wait  Grin
Actually I just curious to know what I did wrong

I have a very good idea about that Smiley I did end up messing with the original echo hash, it seemed to have an extraneous xor that made the full 512 bit hash come out wrong. Then using that result for the additional hamsi+fugue hashes kinda ends badly. The funny thing is that it worked fine for X11 because it was the last hashing algo in the chain and the X11 algo only takes the first 256 bits of the hash, discarding the rest and the flipped bit ended up in the discarded part. Was a bitch to track down for sure.


ok, it's working.
Actually, I had a couple of other mistakes regarding bit swapping (I am rather bit illiterate...), which could have been solved by random trials   Grin but for the echo, it was clearly outside my level of competence (however I was suspecting something funny, as it wasn't possible to add new algo on top of this one).

In terms of speed I am getting between 1700khah/s and 1800khash/s with the 750ti.

I found something else interesting, it is possible to run on X13 p2pool with X11 algo  Grin and to get validated share (not sure if it works for the "big" share, but for the rest it works)

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
June 12, 2014, 05:11:54 PM
 #15484

Great work! marvelous first few posts!

building in windows right now......

Is that a burning house I smell..?

lol, no, still compiling. I shoulda used my other machine. I have fire extinguishers at the ready  Wink
actually, it would be better to have only X13, if it compiles entirely both X11 and X13 it can take some times

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
tsiv
Full Member
***
Offline Offline

Activity: 137
Merit: 100


View Profile
June 12, 2014, 05:24:18 PM
 #15485

Great work! marvelous first few posts!

building in windows right now......

Is that a burning house I smell..?

lol, no, still compiling. I shoulda used my other machine. I have fire extinguishers at the ready  Wink
actually, it would be better to have only X13, if it compiles entirely both X11 and X13 it can take some times

X13 just adds two more hashing algos to compile, it doesn't do the 11 X11 hashes twice or anything like that. That said, both the original shavite and my fugue seem to take forever to compile for some reason.
DemosMirak
Full Member
***
Offline Offline

Activity: 146
Merit: 100


View Profile
June 12, 2014, 05:34:39 PM
 #15486

Aaand it's out: https://github.com/tsiv/ccminer

Insert the standard "if your house burns down, totally not my fault" disclaimer here.

Windows build should be fine as well, at least I managed to compile it myself. I won't be releasing any binaries, feel free to do so yourselves though.

Christ gonna release killer goretl version probably before or during weekend. The new version will upgrade x11 speed gtx 750 ti to 2.8 - 3. Maybe u should wait for the new release and implement your code which will increase x13 speed significantly. Or maybe both of u can combine code and do a combine release ? So the new version will have killer goretl + x13. That is pretty exciting.

Should be an easy modification, right now my X13 is using the same code for the first 11 algos as the original X11. At the simplest it just takes a recompile after throwing in the new groestl version.

no reason to wait  Grin
Actually I just curious to know what I did wrong

I have a very good idea about that Smiley I did end up messing with the original echo hash, it seemed to have an extraneous xor that made the full 512 bit hash come out wrong. Then using that result for the additional hamsi+fugue hashes kinda ends badly. The funny thing is that it worked fine for X11 because it was the last hashing algo in the chain and the X11 algo only takes the first 256 bits of the hash, discarding the rest and the flipped bit ended up in the discarded part. Was a bitch to track down for sure.


ok, it's working.
Actually, I had a couple of other mistakes regarding bit swapping (I am rather bit illiterate...), which could have been solved by random trials   Grin but for the echo, it was clearly outside my level of competence (however I was suspecting something funny, as it wasn't possible to add new algo on top of this one).

In terms of speed I am getting between 1700khah/s and 1800khash/s with the 750ti.

I found something else interesting, it is possible to run on X13 p2pool with X11 algo  Grin and to get validated share (not sure if it works for the "big" share, but for the rest it works)

You have a working version of CCminer, capable of mining X13? Would you care to share Smiley (BTW, I use an GTX 770)?

BTC: 13enECLM3M3gjQDoBKouXuYFG4zXaDdDPx
LTC: LRTbQNQcRjZV51PivQdhK7zpMtJYPouqR9
cryptomines
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
June 12, 2014, 05:58:07 PM
 #15487

http://www8.zippyshare.com/v/43385734/file.html

I have not tested it as I am on a Mobil phone.
Equitum
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
June 12, 2014, 06:03:13 PM
 #15488

What will be the next step for ccminer going forward ? It seems that there is no news regarding new release or development. Can we expect to see anything new this month ?

I think even before the weekend. Adding that killer groestl should be an easy exercise.

Would be great !!!

Groestl is very energy efficient, great algo.

Not to mention that it would speed up X11 as well.

And Jackpot and NIST5!
tarzanbigcity
Sr. Member
****
Offline Offline

Activity: 602
Merit: 250



View Profile
June 12, 2014, 06:46:38 PM
 #15489

Miner just closes. This is my bat file to launch. Tested on TMB

ccminer-x13.exe -o stratum+tcp://east01.us.trademybit.com:5550 -u user -p pass
pause
cryptomines
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
June 12, 2014, 06:52:02 PM
 #15490

Miner just closes. This is my bat file to launch. Tested on TMB

ccminer-x13.exe -o stratum+tcp://east01.us.trademybit.com:5550 -u user -p pass
pause


ccminer-x13.exe  -a x13 -o stratum+tcp://east01.us.trademybit.com:5550 -u user -p pass
pause

You need the algo argument.

I'm getting a little over 1700 kh/s per card.
tarzanbigcity
Sr. Member
****
Offline Offline

Activity: 602
Merit: 250



View Profile
June 12, 2014, 07:04:15 PM
 #15491

Confirmed 1700 per card on EVGA 750 TI SC
gpuminer
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
June 12, 2014, 07:40:48 PM
 #15492

http://cudamining.cc not updated with x13 windows binary ?

Free SIGNs giving everyday. Be part, do not miss!. Sw4sYCL3h9NjLu1i9d6YSSsuQZQztFR7jW
gpuminer
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
June 12, 2014, 07:42:44 PM
 #15493

So here's my profitability list including X13 (using 1.75MH as hashrate per 750ti, as tsiv screenshotted Smiley )
http://pastebin.com/S5mUXWhv
Again prices aren't averages, so it could change in an instant ^^" But all formulas should be OK now.

For some reason talk coin profit calculation seems to be different from other coin. I always calculate i will get more coins based on difficulties but in reality i am getting way less when i check pool per hour earning. Maybe u should check that out. 

Free SIGNs giving everyday. Be part, do not miss!. Sw4sYCL3h9NjLu1i9d6YSSsuQZQztFR7jW
italeffect
Sr. Member
****
Offline Offline

Activity: 255
Merit: 250



View Profile
June 12, 2014, 07:43:10 PM
 #15494

Windows binary works for me too.
3 x 750ti rig is giving me about 5400 khash/s with a 100/300 overclock on x13

Dash: Xdopotr3eAHpsSCMkUyU2YWP3WQWb5X3t8
S_tring
Full Member
***
Offline Offline

Activity: 252
Merit: 102


OPEN Platform - Powering Blockchain Acceptance


View Profile
June 12, 2014, 07:43:35 PM
 #15495

http://cudamining.cc not updated with x13 windows binary ?

It's not a ccminer release.

OPEN Platform | Powering Blockchain Acceptance [ICO]
❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱Blockchain's First Payment API❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱
Whitepaper  ●  Slack  ●  Facebook  ●  Twitter  ●  Reddit  ●  Telegram
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
June 12, 2014, 07:47:14 PM
 #15496

http://cudamining.cc not updated with x13 windows binary ?
doesn't seem to be the better way to ask...
(if I was managing it, and had read your comment; you could wait a very long time to get an update...)

 

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
tarzanbigcity
Sr. Member
****
Offline Offline

Activity: 602
Merit: 250



View Profile
June 12, 2014, 07:47:28 PM
 #15497

Windows binary works for me too.
3 x 750ti rig is giving me about 5400 khash/s with a 100/300 overclock on x13

Are you using the EVGA cards? The ones without the pcie power port?
Bombadil
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500



View Profile
June 12, 2014, 07:48:21 PM
 #15498

I'm trying to build it myself, but for some reason, Visual Studio decided to not let me have compute_50 anymore, only up to 35. I have cuda toolkit 5.5, any ideas? It worked before :s
I'm a fool sometimes, ignore me Cheesy (it's compute_35 but with the constant at 1)

http://cudamining.cc not updated with x13 windows binary ?

It's not a ccminer release.

Neither is the one with the SIMD hash boost?
But, gpuminer, just wait a bit, first testing time Cheesy
gpuminer
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
June 12, 2014, 07:48:57 PM
 #15499

http://cudamining.cc not updated with x13 windows binary ?
doesn't seem to be the better way to ask...
(if I was managing it, and had read your comment; you could wait a very long time to get an update...)

 

i dont mind waiting. Just a reminder. I am used to waiting when it comes to ccminer.

Free SIGNs giving everyday. Be part, do not miss!. Sw4sYCL3h9NjLu1i9d6YSSsuQZQztFR7jW
S_tring
Full Member
***
Offline Offline

Activity: 252
Merit: 102


OPEN Platform - Powering Blockchain Acceptance


View Profile
June 12, 2014, 07:52:22 PM
 #15500

I'm trying to build it myself, but for some reason, Visual Studio decided to not let me have compute_50 anymore, only up to 35. I have cuda toolkit 5.5, any ideas? It worked before :s


http://cudamining.cc not updated with x13 windows binary ?

It's not a ccminer release.

Neither is the one with the SIMD hash boost?
But, gpuminer, just wait a bit, first testing time Cheesy

All versions on cudamining.cc are Christians code, this X13 isn't. That's what I meant.

OPEN Platform | Powering Blockchain Acceptance [ICO]
❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱Blockchain's First Payment API❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱❱
Whitepaper  ●  Slack  ●  Facebook  ●  Twitter  ●  Reddit  ●  Telegram
Pages: « 1 ... 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 [775] 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 ... 1135 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!