Bitcoin Forum
June 24, 2025, 03:45:25 AM *
News: Pizza day contest voting
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 445 446 447 448 449 450 ... 1240 »
  Print  
Author Topic: CCminer(SP-MOD) Modded GPU kernels.  (Read 2347851 times)
joblo
Legendary
*
Offline Offline

Activity: 1470
Merit: 1114


View Profile
December 12, 2015, 02:21:03 AM
 #7981


Also should update the code with the cuda version number so it says cuda 7.5 when launched Smiley not important though lol

That is just a hardcoded string and does not reflect how ccminer was actually compiled. A more appropriate comment
would be "optimized for cuda 7.5" unless a system variable is available to read the actual compile environment.

Just replace this code in ccminer.cpp:
Code:
#ifdef WIN32
printf("\tBuilt with VC++ 2013 and nVidia CUDA SDK 6.5\n\n");
#else
printf("\tBuilt with the nVidia CUDA SDK 6.5\n\n");
#endif
with this:
Code:
#ifdef _MSC_VER
printf("Compiled with Visual C++ %d ", _MSC_VER / 100);
#else
#ifdef __clang__
printf("Compiled with Clang %s ", __clang_version__);
#else
#ifdef __GNUC__
printf("Compiled with GCC %d.%d ", __GNUC__, __GNUC_MINOR__);
#else
printf("Compiled with an unknown compiler ");
#endif
#endif
#endif
printf("using Nvidia CUDA Toolkit %d.%d\n\n", CUDART_VERSION / 1000, (CUDART_VERSION % 1000) / 10);


I knew there had to be one, I just couldn't find it.

AKA JayDDee, cpuminer-opt developer. https://github.com/JayDDee/cpuminer-opt
https://bitcointalk.org/index.php?topic=5226770.msg53865575#msg53865575
BTC: 12tdvfF7KmAsihBXQXynT6E6th2c2pByTT,
Al_may
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
December 12, 2015, 02:30:18 AM
 #7982

OK, I must have forgotten how to do this but

 how would I start, in windows 7, a CMD or used in a CMD scrypt with an affinity of 4.

just trying to keep the work load off the first 2 for the OS
I have looked it up in google but most had their heads in a dark place
Al_may
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
December 12, 2015, 02:59:07 AM
 #7983

oh my, Shocked
I just updated from .74 on a windows 7 pro and I get this
ccminer.exe is not a valid win 32 application
joblo
Legendary
*
Offline Offline

Activity: 1470
Merit: 1114


View Profile
December 12, 2015, 03:10:08 AM
 #7984

OK, I must have forgotten how to do this but

 how would I start, in windows 7, a CMD or used in a CMD scrypt with an affinity of 4.

just trying to keep the work load off the first 2 for the OS
I have looked it up in google but most had their heads in a dark place

I'm not sure why you're asking but the --cpu-affinity can be set in ccminer. If you want to do it
in Windows it's something like: start <program> /affinity <n>

I don't think you have anything to worry about with the cpu load of ccminer, but a cpu miner...

AKA JayDDee, cpuminer-opt developer. https://github.com/JayDDee/cpuminer-opt
https://bitcointalk.org/index.php?topic=5226770.msg53865575#msg53865575
BTC: 12tdvfF7KmAsihBXQXynT6E6th2c2pByTT,
Lenore
Full Member
***
Offline Offline

Activity: 168
Merit: 100


★YoBit.Net★ 350+ Coins Exchange & Dice


View Profile
December 12, 2015, 03:14:23 AM
 #7985

oh my, Shocked
I just updated from .74 on a windows 7 pro and I get this
ccminer.exe is not a valid win 32 application

Have you tried combatability mode.  You can pick what OP version u want it to try to run in.

You on a 32 or 64 bit system or do you have a 32 bit os with a 64 bit system?

Al_may
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
December 12, 2015, 03:15:40 AM
 #7986

oh my, Shocked
I just updated from .74 on a windows 7 pro and I get this
ccminer.exe is not a valid win 32 application

well i had to update my 7-zip. all is fine now
Al_may
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
December 12, 2015, 03:27:09 AM
 #7987

yep 76 is a 50% slow down for neo scrypt  from 586 to 234
 and quark is up 1.04 % from 17206 to 17972
time to run two folders
joblo
Legendary
*
Offline Offline

Activity: 1470
Merit: 1114


View Profile
December 12, 2015, 03:37:29 AM
Last edit: December 12, 2015, 03:53:21 AM by joblo
 #7988

yep 76 is a 50% slow down for neo scrypt  from 586 to 234
 and quark is up 1.04 % from 17206 to 17972
time to run two folders

Has anyone compiled r76 for sm5.2 using cuda 6.5 (windows or linux to do a direct comparison with cuda 7.5?
I could only do it with 750ti's on Linux and there was virtually no difference.

Edit: however, they were both slower than 1.5.74-cuda6.5.

The numbers (gpu0/gpu1) both EVGA 750ti SC no OC.


            1.5.74(6.5)    1.5.76(6.5)     1.5.76(7.5)
x11         3090/3145      2985/3050       2980/3045
quark       6360/6450      6335/6380       6340/6400
lyra2v2     4715/4755      4680/4715       4680/4715


What a pain getting this to display correctly, this ain't WYSIWYG.



AKA JayDDee, cpuminer-opt developer. https://github.com/JayDDee/cpuminer-opt
https://bitcointalk.org/index.php?topic=5226770.msg53865575#msg53865575
BTC: 12tdvfF7KmAsihBXQXynT6E6th2c2pByTT,
sp_ (OP)
Legendary
*
Offline Offline

Activity: 2926
Merit: 1087

Team Black developer


View Profile
December 12, 2015, 07:30:55 AM
 #7989

oh my, Shocked
I just updated from .74 on a windows 7 pro and I get this
ccminer.exe is not a valid win 32 application

Release 76 will not work with old drivers. you need to upgrade to the latest.

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

Activity: 2926
Merit: 1087

Team Black developer


View Profile
December 12, 2015, 07:32:32 AM
 #7990

yep 76 is a 50% slow down for neo scrypt  from 586 to 234
 and quark is up 1.04 % from 17206 to 17972
time to run two folders

Your math is wrong.

from 17206 to 17972 is a 4,4519353713821% increase of the hashrate.

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

Activity: 3094
Merit: 1093


--- ChainWorks Industries ---


View Profile WWW
December 12, 2015, 07:32:58 AM
 #7991

tanx for the update sp ... cant wait to compile and see ...
I just released 76 with increased hashrate all over the place. But some of the algos are still slower than release 74. Quark has the most boost this time, and mostly on compute 5.2 devices.
ok great ...
then thats the first thing i will test when i get into the office tomorrow ...
a miner will hash quark on your donation address ( donate-sp.granitecoin.com ) and see how it tests ...
look out for the test on nicehash ( eu stratum ) ...
tanx again mate ... i hope it compiles and works well on the new system ...
#crysx

Just tested quark release 76 on my 980ti g1 gigabyte windforce oc.
27.3 (+1,4MHASH) on the standard clocks(New WORLD RECORD)!
Release 74 is only doing 25.9MHASH.

On the EVGA SSC gtx 960. 11 MHASH on standard clocks. up 0.5 MHASH from release 74



is that stock clocks sp? ...

#crysx

sp_ (OP)
Legendary
*
Offline Offline

Activity: 2926
Merit: 1087

Team Black developer


View Profile
December 12, 2015, 07:34:10 AM
Last edit: December 12, 2015, 08:12:11 AM by sp_
 #7992

Has anyone compiled r76 for sm5.2 using cuda 6.5 (windows or linux to do a direct comparison with cuda 7.5?
I could only do it with 750ti's on Linux and there was virtually no difference.
Edit: however, they were both slower than 1.5.74-cuda6.5.

This fork is now a cuda 7.5 fork. Upgrade to the latest drivers and compile with cuda 7.5 to get a boost in quark. (compute 5.2 devices) gtx 950, gtx 960, gtx 970, gtx 980, gtx 980ti...

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

Activity: 2926
Merit: 1087

Team Black developer


View Profile
December 12, 2015, 07:35:01 AM
 #7993

is that stock clocks sp? ...
#crysx

Yes.

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

Activity: 2926
Merit: 1087

Team Black developer


View Profile
December 12, 2015, 07:39:40 AM
 #7994


Here is the checklist to reach the optimal speed:

1. Latest drivers
2. Windows x86
3. Compile for cuda 7.5 (or use my binary)

I get a 5% boost on my testrigs on compute 5.2 devices in the quark algo.

If you do this:

1. Linux
2. 64bit build
3. cuda 6.5

You get a 0% boost in the quark algo.

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

Activity: 3094
Merit: 1093


--- ChainWorks Industries ---


View Profile WWW
December 12, 2015, 07:40:37 AM
 #7995

yep 76 is a 50% slow down for neo scrypt  from 586 to 234
 and quark is up 1.04 % from 17206 to 17972
time to run two folders

Has anyone compiled r76 for sm5.2 using cuda 6.5 (windows or linux to do a direct comparison with cuda 7.5?
I could only do it with 750ti's on Linux and there was virtually no difference.

Edit: however, they were both slower than 1.5.74-cuda6.5.

The numbers (gpu0/gpu1) both EVGA 750ti SC no OC.


            1.5.74(6.5)    1.5.76(6.5)     1.5.76(7.5)
x11         3090/3145      2985/3050       2980/3045
quark       6360/6450      6335/6380       6340/6400
lyra2v2     4715/4755      4680/4715       4680/4715


What a pain getting this to display correctly, this ain't WYSIWYG.




im compiling the the latest as we speak ... i was well enough to drive - so im here in the office at the moment ...

the only thing i can give a comparison rate to is quark ( from 74 - 76 ) on c7.5 ...

that doesnt exactly hep what you are asking - but it may be of interest to you regarding the last compiles i had with fedora ...

btw - i have upgraded to fedora23x64 on the test machine - and compiling with c7.5 and ccminer-spmod76 ...

it is this test machine i will be placing to mine for sp as a donation ... so if all is well - it should be a nice gain - unless fedora / cuda is broken in this version ... if not - im looking forward to some gains ... and sp - expect some hashrate on the donation link for you ...

#crysx

chrysophylax
Legendary
*
Offline Offline

Activity: 3094
Merit: 1093


--- ChainWorks Industries ---


View Profile WWW
December 12, 2015, 07:45:40 AM
 #7996


Here is the checklist to reach the optimal speed:

1. Latest drivers
2. Windows x86
3. Compile for cuda 7.5 (or use my binary)

I get a 5% boost on my testrigs on compute 5.2 devices in the quark algo.

If you do this:

1. Linux
2. 64bit build
3. cuda 6.5

You get a 0% boost in the quark algo.

though linux build will show in a few minutes as to what it does compiled in f23x64c75 ( ie - fedora 23 x64 cuda 7.5 - im shorthanding from now on ) ...

at least on my end anyway ... as you know - my systems seem to go the complete opposite of what most people were getting ...

look out for the hashrate to show on you link ... https://www.nicehash.com/?p=miners&addr=1CTiNJyoUmbdMRACtteRWXhGqtSETYd6Vd&a=12&l=0 ...

ill do the test on quark as that is a good comparison from the previous v74 ( that was compiled in f22x64c75 ) ...

#crysx

sp_ (OP)
Legendary
*
Offline Offline

Activity: 2926
Merit: 1087

Team Black developer


View Profile
December 12, 2015, 07:51:57 AM
 #7997

at least on my end anyway ... as you know - my systems seem to go the complete opposite of what most people were getting ...

look out for the hashrate to show on you link ... https://www.nicehash.com/?p=miners&addr=1CTiNJyoUmbdMRACtteRWXhGqtSETYd6Vd&a=12&l=0 ...

ill do the test on quark as that is a good comparison from the previous v74 ( that was compiled in f22x64c75 ) ...

#crysx

Thanks crysx. The difference is mainly for the compute 5.2 devices, but I hope you will get a boost on your system as well.

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

Activity: 3094
Merit: 1093


--- ChainWorks Industries ---


View Profile WWW
December 12, 2015, 08:08:41 AM
 #7998

at least on my end anyway ... as you know - my systems seem to go the complete opposite of what most people were getting ...

look out for the hashrate to show on you link ... https://www.nicehash.com/?p=miners&addr=1CTiNJyoUmbdMRACtteRWXhGqtSETYd6Vd&a=12&l=0 ...

ill do the test on quark as that is a good comparison from the previous v74 ( that was compiled in f22x64c75 ) ...

#crysx

Thanks crysx. The difference is mainly for the compute 5.2 devices, but I hope you will get a boost on your system as well.

all good sp ...

compiled and rebooted just now ...

lets see ...

edit - its active ...

-------

Compiled with GCC 5.1 using Nvidia CUDA Toolkit 7.5

  Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
  CUDA support by Christian Buchner, Christian H. and DJM34
  Includes optimizations implemented by sp, klaust, tpruvot, tsiv and pallas.

[2015-12-12 18:39:17] Adding 3774720 threads to intensity 22, 7969024 cuda threads
[2015-12-12 18:39:21] Starting Stratum on stratum+tcp://donate-sp.granitecoin.com:7012/
[2015-12-12 18:39:21] NVML GPU monitoring enabled.
[2015-12-12 18:39:21] 3 miner threads started, using 'quark' algorithm.
[2015-12-12 18:39:21] Binding thread 0 to cpu 0 (mask 1)
[2015-12-12 18:39:21] Binding thread 2 to cpu 0 (mask 4)
[2015-12-12 18:39:21] Binding thread 1 to cpu 1 (mask 2)
[2015-12-12 18:39:22] Stratum difficulty set to 0.04
[2015-12-12 18:39:23] donate-sp.granitecoin.com:7012/ quark block 2557680
[2015-12-12 18:39:28] donate-sp.granitecoin.com:7012/ quark block 2557681
[2015-12-12 18:39:36] donate-sp.granitecoin.com:7012/ quark block 2557682

------

#crysx

joblo
Legendary
*
Offline Offline

Activity: 1470
Merit: 1114


View Profile
December 12, 2015, 04:01:51 PM
 #7999

yep 76 is a 50% slow down for neo scrypt  from 586 to 234
 and quark is up 1.04 % from 17206 to 17972
time to run two folders

Has anyone compiled r76 for sm5.2 using cuda 6.5 (windows or linux to do a direct comparison with cuda 7.5?
I could only do it with 750ti's on Linux and there was virtually no difference.

Edit: however, they were both slower than 1.5.74-cuda6.5.

The numbers (gpu0/gpu1) both EVGA 750ti SC no OC.


            1.5.74(6.5)    1.5.76(6.5)     1.5.76(7.5)
x11         3090/3145      2985/3050       2980/3045
quark       6360/6450      6335/6380       6340/6400
lyra2v2     4715/4755      4680/4715       4680/4715


What a pain getting this to display correctly, this ain't WYSIWYG.




im compiling the the latest as we speak ... i was well enough to drive - so im here in the office at the moment ...

the only thing i can give a comparison rate to is quark ( from 74 - 76 ) on c7.5 ...

that doesnt exactly hep what you are asking - but it may be of interest to you regarding the last compiles i had with fedora ...

btw - i have upgraded to fedora23x64 on the test machine - and compiling with c7.5 and ccminer-spmod76 ...

#crysx

Unfortunately with Linux there are very few versions that support both cuda 6.5 & 7.5 so it's difficult to do
direct comparisons. I'm compiling r76 for cuda 6.5 on Windows (had to fiddle with the project file) so I can
directly compare the difference between r74-cuda6.5 vs r76-cuda6.5 and r76-cuda6.5 vs r76-cuda7.5.

Compiling on Windows is a pain. I have to rebuild my compile environment every month because VS shuts down
unless I register. I had to create a virtual machine snapshot before installing VS the first time, otherwise the
tombstone from the previous install would trigger the forced registration imediately.

AKA JayDDee, cpuminer-opt developer. https://github.com/JayDDee/cpuminer-opt
https://bitcointalk.org/index.php?topic=5226770.msg53865575#msg53865575
BTC: 12tdvfF7KmAsihBXQXynT6E6th2c2pByTT,
sp_ (OP)
Legendary
*
Offline Offline

Activity: 2926
Merit: 1087

Team Black developer


View Profile
December 12, 2015, 04:36:50 PM
 #8000

Compiling on Windows is a pain. I have to rebuild my compile environment every month because VS shuts down
unless I register. I had to create a virtual machine snapshot before installing VS the first time, otherwise the
tombstone from the previous install would trigger the forced registration imediately.

Compile with visual studio express 2013. It is free

Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW EVRPROGPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
Pages: « 1 ... 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 445 446 447 448 449 450 ... 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!