Bitcoin Forum
June 22, 2025, 06:43:18 PM *
News: Pizza day contest voting
 
   Home   Help Search Login Register More  
Pages: « 1 ... 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 [394] 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 ... 1240 »
  Print  
Author Topic: CCminer(SP-MOD) Modded GPU kernels.  (Read 2347849 times)
Genoil
Sr. Member
****
Offline Offline

Activity: 438
Merit: 250


View Profile
December 03, 2015, 09:00:25 PM
 #7861


You can do CPU verification of it in 32-bit...

Yes but it is a lot of work. The eth core heavily depends on some big 64-bit libs.


You don't add code, you just change wich buffer the keccak pass is working on. Same code, free keccak. More BTC. But your mininer would need to connect to two pools at the same time.

You'd still need storage to swap out the keccak state. If you do that in global ram, you're only adding more latency instead of hiding it. In shared RAM, it's so much that it starts to press on occupancy.

I still need to look at some other potential oppurtunity for optimizing ETH (AMD only), but don't have much time now.

ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d
BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
sp_ (OP)
Legendary
*
Offline Offline

Activity: 2926
Merit: 1087

Team Black developer


View Profile
December 04, 2015, 08:09:04 AM
 #7862

You can do CPU verification of it in 32-bit...
Yes but it is a lot of work. The eth core heavily depends on some big 64-bit libs.
You don't add code, you just change wich buffer the keccak pass is working on. Same code, free keccak. More BTC. But your mininer would need to connect to two pools at the same time.
You'd still need storage to swap out the keccak state. If you do that in global ram, you're only adding more latency instead of hiding it. In shared RAM, it's so much that it starts to press on occupancy.
I still need to look at some other potential oppurtunity for optimizing ETH (AMD only), but don't have much time now.

You only need to store when you find a nonce that produce a valid keccak hash. The nonce is just a 32bit integer and can be stored in the stack. (level 1 cache).
The merged mining could be a good way to hide donation mining. Wink

Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW EVRPROGPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
bensam1231
Legendary
*
Offline Offline

Activity: 1806
Merit: 1024


View Profile
December 04, 2015, 09:04:29 AM
 #7863

You can do CPU verification of it in 32-bit...
Yes but it is a lot of work. The eth core heavily depends on some big 64-bit libs.
You don't add code, you just change wich buffer the keccak pass is working on. Same code, free keccak. More BTC. But your mininer would need to connect to two pools at the same time.
You'd still need storage to swap out the keccak state. If you do that in global ram, you're only adding more latency instead of hiding it. In shared RAM, it's so much that it starts to press on occupancy.
I still need to look at some other potential oppurtunity for optimizing ETH (AMD only), but don't have much time now.

You only need to store when you find a nonce that produce a valid keccak hash. The nonce is just a 32bit integer and can be stored in the stack. (level 1 cache).
The merged mining could be a good way to hide donation mining. Wink


Neat way of dealing with the memory limitations of Eth. Kudos on that BTW. I'm guessing merged mining isn't really a option for the majority of algos as they more fully utilize GPUs? What about for other memory intensive algos, like Cryptonote?


In other news, does anyone in here have experience with making coins or know anyone who would be a good contact for that? I'm looking into making my own, but would need someone with knowledge of making coins (not just copy paste). The coin wouldn't have to be anything special and could probably just clone another popular coin, however the usage of it would be completely different as would the distribution (but once again nothing super special). Some backend code would have to be written to do a few special things I have in mind, but very easy stuff. I could probably do myself, but it has to tie into the coin which complicates things and I have a lot on my plate besides this.

I'm trying to be vague, wouldn't mind talking with someone on here if you're interested. I don't have a lot in the way of monetary value, so it would probably be payment in the form of the currency we're making (which is monopoly money till things get going). Time frame would definitely be generous, but within reason. There may be a v2/3 of the coin as well depending on how the first generation goes. This has been something I've been planning for well over a year and isn't going to be a ordinary pump/dump coin.

If you guys have a referral, I'd take that too.

I buy private Nvidia miners. Send information and/or inquiries to my PM box.
sp_ (OP)
Legendary
*
Offline Offline

Activity: 2926
Merit: 1087

Team Black developer


View Profile
December 04, 2015, 09:26:11 AM
Last edit: December 04, 2015, 09:36:25 AM by sp_
 #7864

Here is some of the popular algos and their speed measurements with the 20 latest sp-mod releases on the 750ti. (EVGA GTX 750 Ti standard clocks)

http://cryptomining-blog.com/6289-evga-gtx-750-ti-with-different-versions-of-ccminer-spmod/





July 2015-november 2015

x11: +2%
quark: +6.2%
neo:    +8.3%
lyra2v2: +5.3%

But as you can see, the release 74 might not be the fastest in all algos.

x11(release 74) (+2%)
quark (release 70) (+6.73)%
neo (release 70) (+8.93)%
lyra2v2(release 67)(+6.7%)

Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW EVRPROGPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
Genoil
Sr. Member
****
Offline Offline

Activity: 438
Merit: 250


View Profile
December 04, 2015, 11:44:23 AM
 #7865

You can do CPU verification of it in 32-bit...
Yes but it is a lot of work. The eth core heavily depends on some big 64-bit libs.
You don't add code, you just change wich buffer the keccak pass is working on. Same code, free keccak. More BTC. But your mininer would need to connect to two pools at the same time.
You'd still need storage to swap out the keccak state. If you do that in global ram, you're only adding more latency instead of hiding it. In shared RAM, it's so much that it starts to press on occupancy.
I still need to look at some other potential oppurtunity for optimizing ETH (AMD only), but don't have much time now.

You only need to store when you find a nonce that produce a valid keccak hash. The nonce is just a 32bit integer and can be stored in the stack. (level 1 cache).
The merged mining could be a good way to hide donation mining. Wink


Ethash nonce is 64-bit but that's still small. But on second thought you may be right, I was looking at the wrong end. If you simply do a couple of rounds of keccak after ethash already has completed, it could work! I'd say go for it :-)

ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d
BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
Genoil
Sr. Member
****
Offline Offline

Activity: 438
Merit: 250


View Profile
December 04, 2015, 02:22:43 PM
 #7866

Thinking about it a bit more, the easiest way forward would be to extend ethminer with a stratum proxy that ccminer would connect to. Ethminer would take care of DAG creation, CPU verification and work supply. It would be very low on resources.

ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d
BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
pallas
Legendary
*
Offline Offline

Activity: 2716
Merit: 1094


Black Belt Developer


View Profile
December 04, 2015, 02:33:22 PM
 #7867

Thinking about it a bit more, the easiest way forward would be to extend ethminer with a stratum proxy that ccminer would connect to. Ethminer would take care of DAG creation, CPU verification and work supply. It would be very low on resources.

Looks like a fine idea to me :-)

antonio8
Legendary
*
Offline Offline

Activity: 1400
Merit: 1000


View Profile
December 04, 2015, 03:18:07 PM
 #7868

Thinking about it a bit more, the easiest way forward would be to extend ethminer with a stratum proxy that ccminer would connect to. Ethminer would take care of DAG creation, CPU verification and work supply. It would be very low on resources.

If I am thinking correct then that would be Dwarf Pool as the only pool with a stratum. I could be wrong also if that is not what you meant.

If you are going to leave your BTC on an exchange please send it to this address instead 1GH3ub3UUHbU5qDJW5u3E9jZ96ZEmzaXtG, I will at least use the money better than someone who steals it from the exchange. Thanks Wink
jpouza
Legendary
*
Offline Offline

Activity: 3080
Merit: 1137


View Profile
December 04, 2015, 03:30:43 PM
 #7869

Here is some of the popular algos and their speed measurements with the 20 latest sp-mod releases on the 750ti. (EVGA GTX 750 Ti standard clocks)

http://cryptomining-blog.com/6289-evga-gtx-750-ti-with-different-versions-of-ccminer-spmod/





July 2015-november 2015

x11: +2%
quark: +6.2%
neo:    +8.3%
lyra2v2: +5.3%

But as you can see, the release 74 might not be the fastest in all algos.

x11(release 74) (+2%)
quark (release 70) (+6.73)%
neo (release 70) (+8.93)%
lyra2v2(release 67)(+6.7%)



sp_, it is really nice to see the progress / improvements here, I can see you haven´t stopped developing the ccminer algos, my only regret is to do not participate anymore in this journey testing the miners and contributing with donations, I really wish sucess to you all, keep up the good work.


Cheers
pallas
Legendary
*
Offline Offline

Activity: 2716
Merit: 1094


Black Belt Developer


View Profile
December 04, 2015, 03:43:22 PM
 #7870

sp_, it is really nice to see the progress / improvements here, I can see you haven´t stopped developing the ccminer algos, my only regret is to do not participate anymore in this journey testing the miners and contributing with donations, I really wish sucess to you all, keep up the good work.

Cheers

If the profit continues dropping like this, we may all have to stop mining/developing :-(

jpouza
Legendary
*
Offline Offline

Activity: 3080
Merit: 1137


View Profile
December 04, 2015, 03:49:27 PM
 #7871

sp_, it is really nice to see the progress / improvements here, I can see you haven´t stopped developing the ccminer algos, my only regret is to do not participate anymore in this journey testing the miners and contributing with donations, I really wish sucess to you all, keep up the good work.

Cheers

If the profit continues dropping like this, we may all have to stop mining/developing :-(

That is a pitty, I have stopped mining here cause of government taxes (Electricity bill).
Genoil
Sr. Member
****
Offline Offline

Activity: 438
Merit: 250


View Profile
December 04, 2015, 04:38:07 PM
 #7872

Thinking about it a bit more, the easiest way forward would be to extend ethminer with a stratum proxy that ccminer would connect to. Ethminer would take care of DAG creation, CPU verification and work supply. It would be very low on resources.

If I am thinking correct then that would be Dwarf Pool as the only pool with a stratum. I could be wrong also if that is not what you meant.

No it would be like this:
Ccminer <-> stratum <-> ethminer <-> ETH::getWork <-> any pool or ETH node

ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d
BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
bensam1231
Legendary
*
Offline Offline

Activity: 1806
Merit: 1024


View Profile
December 04, 2015, 05:14:02 PM
 #7873

sp_, it is really nice to see the progress / improvements here, I can see you haven´t stopped developing the ccminer algos, my only regret is to do not participate anymore in this journey testing the miners and contributing with donations, I really wish sucess to you all, keep up the good work.

Cheers

If the profit continues dropping like this, we may all have to stop mining/developing :-(

That is a pitty, I have stopped mining here cause of government taxes (Electricity bill).

Yup it's getting there... A lot of volume is being dumped into BTC as it continues to climb. Altcoins may be left at the wayside in lieu of the mothercoin. Hopefully not, but we'll see.

Bump for this

Quote
In other news, does anyone in here have experience with making coins or know anyone who would be a good contact for that? I'm looking into making my own, but would need someone with knowledge of making coins (not just copy paste). The coin wouldn't have to be anything special and could probably just clone another popular coin, however the usage of it would be completely different as would the distribution (but once again nothing super special). Some backend code would have to be written to do a few special things I have in mind, but very easy stuff. I could probably do myself, but it has to tie into the coin which complicates things and I have a lot on my plate besides this.

I'm trying to be vague, wouldn't mind talking with someone on here if you're interested. I don't have a lot in the way of monetary value, so it would probably be payment in the form of the currency we're making (which is monopoly money till things get going). Time frame would definitely be generous, but within reason. There may be a v2/3 of the coin as well depending on how the first generation goes. This has been something I've been planning for well over a year and isn't going to be a ordinary pump/dump coin.

If you guys have a referral, I'd take that too.

I buy private Nvidia miners. Send information and/or inquiries to my PM box.
bathrobehero
Legendary
*
Offline Offline

Activity: 2002
Merit: 1051


ICO? Not even once.


View Profile
December 04, 2015, 06:24:58 PM
 #7874


Yup it's getting there... A lot of volume is being dumped into BTC as it continues to climb. Altcoins may be left at the wayside in lieu of the mothercoin. Hopefully not, but we'll see.


I can't help but feel that when the price of BTC will increase next year mostly becasue of the halving, it should inevitably create interest in the crypto scene which should revive altcoins as well. Hopefully at least.

Not your keys, not your coins!
Cryptozillah
Hero Member
*****
Offline Offline

Activity: 687
Merit: 502


View Profile
December 04, 2015, 06:37:31 PM
 #7875

Some Black Friday 970:s arrived today.
chrysophylax
Legendary
*
Offline Offline

Activity: 3094
Merit: 1093


--- ChainWorks Industries ---


View Profile WWW
December 04, 2015, 06:40:53 PM
 #7876

sp_, it is really nice to see the progress / improvements here, I can see you haven´t stopped developing the ccminer algos, my only regret is to do not participate anymore in this journey testing the miners and contributing with donations, I really wish sucess to you all, keep up the good work.

Cheers

If the profit continues dropping like this, we may all have to stop mining/developing :-(

i wont ... Smiley ...

off to bed now ... nite ...

#crysx

chrysophylax
Legendary
*
Offline Offline

Activity: 3094
Merit: 1093


--- ChainWorks Industries ---


View Profile WWW
December 04, 2015, 06:42:16 PM
 #7877

Some Black Friday 970:s arrived today.


now that is a nice kit ...

i need sleep dammit ... stop keeping me awake and posting stuff like this ...

Wink ...

#crysx

Cryptozillah
Hero Member
*****
Offline Offline

Activity: 687
Merit: 502


View Profile
December 04, 2015, 06:54:28 PM
 #7878

Some Black Friday 970:s arrived today.


now that is a nice kit ...

i need sleep dammit ... stop keeping me awake and posting stuff like this ...

Wink ...

#crysx
Lol Smiley
Too bad profits are down alot.
Now running most my gear at stock clocks.
Cryptozillah
Hero Member
*****
Offline Offline

Activity: 687
Merit: 502


View Profile
December 04, 2015, 11:30:28 PM
 #7879

Some numbers from my new 970 rig.
GPU: MSI GeForce GTX 970 4GB Tiger OC

Rig:
Asrock H81
Celeron G1820
8Gb ram (16gb virtual memory set)
Silverstone Strider 1200w v2
3xMSI GeForce GTX 970 4GB Tiger OC
Powered USB Risers
SSD Hard Drive

Stock clocks: 1102/1753
sp-MOD 1.5.74





sambiohazard
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000



View Profile
December 05, 2015, 12:39:03 AM
 #7880

@bensam1231 you might want to contact @jyap on BCT or twitter. he is dev of JBS coin & very knowledgeable person. He might not develop your coin but he sure can help with little bits & advice if he has time. You can also join JBS slack here http://slack.getjumbucks.com/. Its a nice place to hangout & its open to all, just ask for an invite. I hope this helps

Regards

Sam Smiley
Pages: « 1 ... 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 [394] 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 ... 1240 »
  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!