Bitcoin Forum
May 03, 2024, 08:28:01 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 [1114] 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 »
  Print  
Author Topic: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]  (Read 3426872 times)
mshome86
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
April 05, 2015, 11:15:31 AM
 #22261

Please cudaminer for collecting coppelak or double keccak
1714768081
Hero Member
*
Offline Offline

Posts: 1714768081

View Profile Personal Message (Offline)

Ignore
1714768081
Reply with quote  #2

1714768081
Report to moderator
"With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714768081
Hero Member
*
Offline Offline

Posts: 1714768081

View Profile Personal Message (Offline)

Ignore
1714768081
Reply with quote  #2

1714768081
Report to moderator
1714768081
Hero Member
*
Offline Offline

Posts: 1714768081

View Profile Personal Message (Offline)

Ignore
1714768081
Reply with quote  #2

1714768081
Report to moderator
temroa
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
April 05, 2015, 11:50:18 AM
 #22262

hi,
where I can find the latest version ccminer of djm34 for windows?
Thanks!

here you can find various builds
http://cryptomining-blog.com/tag/ccminer-fork/page/1/

▲▼▲▼▲▼▲▼  No.1 Bitcoin Binary Options and Double Dice  ▲▼▲▼▲▼▲▼
████████████████████████████████  sec◔nds trade  ████████████████████████████████
↑↓ Instant Bets ↑↓ Flexible 1~720 minutes Expiry time ↑↓ Highest Reward 190% ↑↓ 16 Assets [btc, forex, gold, 1% edge double dice] ↑↓
enerbyte
Hero Member
*****
Offline Offline

Activity: 556
Merit: 501


View Profile
April 05, 2015, 02:58:23 PM
 #22263

hi,
where I can find the latest version ccminer of djm34 for windows?
Thanks!

here you can find various builds
http://cryptomining-blog.com/tag/ccminer-fork/page/1/
thanks but it's not what I want. Wink
temroa
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
April 05, 2015, 03:01:54 PM
 #22264

hi,
where I can find the latest version ccminer of djm34 for windows?
Thanks!

here you can find various builds
http://cryptomining-blog.com/tag/ccminer-fork/page/1/
thanks but it's not what I want. Wink

his github repo
https://github.com/djm34

▲▼▲▼▲▼▲▼  No.1 Bitcoin Binary Options and Double Dice  ▲▼▲▼▲▼▲▼
████████████████████████████████  sec◔nds trade  ████████████████████████████████
↑↓ Instant Bets ↑↓ Flexible 1~720 minutes Expiry time ↑↓ Highest Reward 190% ↑↓ 16 Assets [btc, forex, gold, 1% edge double dice] ↑↓
Grim
Sr. Member
****
Offline Offline

Activity: 504
Merit: 252


View Profile
April 10, 2015, 09:44:04 AM
 #22265

Using good old cudaminer for nfactor 16 yacoin.

The reason?
It's an Asus 750ti 4GB card.

-L 8 -l t64x1 -b 16384 -i 0

The settings give like 0.36 to 0.38 khash/s.

The interesting fact tho is that these are the same settings and the same hash a standard 2GB model can hash.

Setting -L any lower is possible and vram useage goes up but the hashing is way slower.

Any insight?
Grim
Sr. Member
****
Offline Offline

Activity: 504
Merit: 252


View Profile
April 10, 2015, 04:13:38 PM
Last edit: April 10, 2015, 05:00:00 PM by Grim
 #22266

Using good old cudaminer for nfactor 16 yacoin.

The reason?
It's an Asus 750ti 4GB card.

-L 8 -l t64x1 -b 16384 -i 0

The settings give like 0.36 to 0.38 khash/s.

The interesting fact tho is that these are the same settings and the same hash a standard 2GB model can hash.

Setting -L any lower is possible and vram useage goes up but the hashing is way slower.

Any insight?

Code:
typedef struct scrypt_aligned_alloc_t {
uint8_t *mem, *ptr;
} scrypt_aligned_alloc;

#if defined(SCRYPT_TEST_SPEED)
static uint8_t *mem_base = (uint8_t *)0;
static size_t mem_bump = 0;

/* allocations are assumed to be multiples of 64 bytes and total allocations not to exceed ~1.01gb */
static scrypt_aligned_alloc
scrypt_alloc(uint64_t size) {
scrypt_aligned_alloc aa;
if (!mem_base) {
mem_base = (uint8_t *)malloc((1024 * 1024 * 1024) + (1024 * 1024) + (SCRYPT_BLOCK_BYTES - 1));
if (!mem_base)
scrypt_fatal_error("scrypt: out of memory");
mem_base = (uint8_t *)(((size_t)mem_base + (SCRYPT_BLOCK_BYTES - 1)) & ~(SCRYPT_BLOCK_BYTES - 1));
}
aa.mem = mem_base + mem_bump;
aa.ptr = aa.mem;
mem_bump += (size_t)size;
return aa;
}

static void
scrypt_free(scrypt_aligned_alloc *aa) {
mem_bump = 0;
}
#else
static scrypt_aligned_alloc
scrypt_alloc(uint64_t size) {
static const size_t max_alloc = (size_t)-1;
scrypt_aligned_alloc aa;
size += (SCRYPT_BLOCK_BYTES - 1);
if (size > max_alloc)
scrypt_fatal_error("scrypt: not enough address space on this CPU to allocate required memory");
aa.mem = (uint8_t *)malloc((size_t)size);
aa.ptr = (uint8_t *)(((size_t)aa.mem + (SCRYPT_BLOCK_BYTES - 1)) & ~(SCRYPT_BLOCK_BYTES - 1));
if (!aa.mem)
scrypt_fatal_error("scrypt: out of memory");
return aa;
}

static void
scrypt_free(scrypt_aligned_alloc *aa) {
free(aa->mem);
}
#endif

why is it limited to 1gb?
Nubminer
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
April 13, 2015, 03:08:59 AM
 #22267

I am trying to load the cudaminer.sln in visual studio Commmunity 2013.. will this work.
it fails every time so I am guessing not.. or maybe I missed a key step ?

cbuchner1 (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 502


View Profile
April 13, 2015, 07:55:17 AM
 #22268

I am trying to load the cudaminer.sln in visual studio Commmunity 2013.. will this work.
it fails every time so I am guessing not.. or maybe I missed a key step ?

the precompiled dependencies in the OP will only work for VS 2010.

You would have to build all the dependencies with VS 2013 if you want to use this newer IDE version.

Christian
Nubminer
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
April 13, 2015, 12:09:09 PM
 #22269

I am trying to load the cudaminer.sln in visual studio Commmunity 2013.. will this work.
it fails every time so I am guessing not.. or maybe I missed a key step ?

the precompiled dependencies in the OP will only work for VS 2010.

You would have to build all the dependencies with VS 2013 if you want to use this newer IDE version.

Christian


if someone else runs the project through their VS 2010 and then shares it will it work on my pc ?

if so is there a source somewhere..

I found one link to a downloadable program but it would not pass my antivirus i couldnt even open the webpage with chrome so i disabled its protection. then the resulting download was infested as well. it seems most stuff is nowadays. sad
sp_
Legendary
*
Offline Offline

Activity: 2898
Merit: 1087

Team Black developer


View Profile
April 13, 2015, 12:45:00 PM
 #22270

Why do you want to run cudaminer? All the algos in cudaminer are slow and not profitable.

ccminer is the best miner for NVIDIA

http://cryptomining-blog.com/4546-updated-windows-binary-of-the-ccminer-1-5-43-git-fork-by-sp-for-maxwell/

bitcointalk thread:

https://bitcointalk.org/index.php?topic=826901.0


Download and mine quark or qubit.

QUARK algo @yaamp multipool: (13-april-2015)

AMD GPU miners: 0.72%
CPU miners: 0.09%
ccminer: 99,19% (sp-mod: 95,79%)



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

Activity: 1400
Merit: 1050


View Profile WWW
April 13, 2015, 12:52:56 PM
 #22271

I am trying to load the cudaminer.sln in visual studio Commmunity 2013.. will this work.
it fails every time so I am guessing not.. or maybe I missed a key step ?

the precompiled dependencies in the OP will only work for VS 2010.

You would have to build all the dependencies with VS 2013 if you want to use this newer IDE version.

Christian


if someone else runs the project through their VS 2010 and then shares it will it work on my pc ?

if so is there a source somewhere..

I found one link to a downloadable program but it would not pass my antivirus i couldnt even open the webpage with chrome so i disabled its protection. then the resulting download was infested as well. it seems most stuff is nowadays. sad
there is a "convert" link in vs2013 to convert a vs2010 project to vs2013, it should be more or less alone (might have a couple of errors to correct).
Regarding the dependencies, I don't think there will be any problem (I still use the one I downloaded at last year)

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

Activity: 75
Merit: 10


View Profile
April 13, 2015, 01:19:16 PM
 #22272

Why do you want to run cudaminer? All the algos in cudaminer are slow and not profitable.

ccminer is the best miner for NVIDIA

http://cryptomining-blog.com/4546-updated-windows-binary-of-the-ccminer-1-5-43-git-fork-by-sp-for-maxwell/

bitcointalk thread:

https://bitcointalk.org/index.php?topic=826901.0


Download and mine quark or qubit.

QUARK algo @yaamp multipool: (13-april-2015)

AMD GPU miners: 0.72%
CPU miners: 0.09%
ccminer: 99,19% (sp-mod: 95,79%)




I currently am running ccminer that was mentioned in this thread https://bitcointalk.org/index.php?topic=656841.msg7429706#msg7429706 but I am only getting 500h/s on a gtx-980 and I think it should be more it is ccminer cryptonight by tsiv ... i have played with the -l (launch config number of threads x number of thread blocks ) and cant find a combo that gets me above the 500 mark


I am trying to mine Monero coin not bitcoin
sp_
Legendary
*
Offline Offline

Activity: 2898
Merit: 1087

Team Black developer


View Profile
April 13, 2015, 01:56:48 PM
 #22273

My modded xmr miner does more than 500 on the 980x. Donate 0.2BTC and I will send it to you. Windows 32bit exe



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

Activity: 504
Merit: 252


View Profile
April 13, 2015, 02:04:10 PM
 #22274

Why do you want to run cudaminer? All the algos in cudaminer are slow and not profitable.

ccminer is the best miner for NVIDIA


Hi sp_ ,

could you look into scrypt-jane algos and include them into ccminer?

It's the last algo in cudaminer which is still profitable to mine with.

sp_
Legendary
*
Offline Offline

Activity: 2898
Merit: 1087

Team Black developer


View Profile
April 15, 2015, 08:32:32 AM
 #22275

I'm pretty sure the output of the last algorithm is used as the input of the next one for X11, precisely so you can't do that.

Yes you can. If each thread is working on a different hash.

example
4 threads 4 hashes

HASH1: x1->x2->x3->
HASH2: x4->x5->x6->
HASH3: x7->x8->x9->
HASH4: x10->x11

Swap the 4 hashes

HASH4: x1->x2->x3->
HASH1: x4->x5->x6->
HASH2: x7->x8->x9->
HASH3: x10->x11

Swap the 4 hashes

HASH3: x1->x2->x3->
HASH4: x4->x5->x6->
HASH1: x7->x8->x9->
HASH2: x10->x11

Swap the 4 hashes

HASH2: x1->x2->x3->
HASH3: x4->x5->x6->
HASH4: x7->x8->x9->
HASH1: x10->x11

Complete

Have you tried this wolf0?

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

Activity: 524
Merit: 500


View Profile
April 15, 2015, 09:07:33 AM
 #22276

No, because it doesn't make sense for GPU - it WOULD, however, make TONS of sense for FPGA or ASIC.
It does. Well, just change wording a bit Wink

Of course I gave you bad advice. Good one is way out of your price range.
Epsylon3
Legendary
*
Offline Offline

Activity: 1484
Merit: 1082


ccminer/cpuminer developer


View Profile WWW
April 16, 2015, 02:50:25 AM
 #22277

Thats called cuda streams :p) and seems to be handled better on linux here



http://devblogs.nvidia.com/parallelforall/how-overlap-data-transfers-cuda-cc/


but... that require changes in each kernels (host launch code), and is not 50% faster, only a few percents

BTC: 1FhDPLPpw18X4srecguG3MxJYe4a1JsZnd - My Projects: ccminer - cpuminer-multi - yiimp - Forum threads : ccminer - cpuminer-multi - yiimp
smolen
Hero Member
*****
Offline Offline

Activity: 524
Merit: 500


View Profile
April 16, 2015, 05:02:46 AM
 #22278

but... that require changes in each kernels (host launch code), and is not 50% faster, only a few percents
On AMD, for whirlpool it seems ALUs are sitting idle for ~half of time, waiting data from constants cache and local data storage.

Of course I gave you bad advice. Good one is way out of your price range.
sp_
Legendary
*
Offline Offline

Activity: 2898
Merit: 1087

Team Black developer


View Profile
April 16, 2015, 09:32:25 AM
Last edit: April 16, 2015, 09:47:18 AM by sp_
 #22279

I'm pretty sure the output of the last algorithm is used as the input of the next one for X11, precisely so you can't do that.

Yes you can. If each thread is working on a different hash.

example
4 threads 4 hashes

HASH1: x1->x2->x3->
HASH2: x4->x5->x6->
HASH3: x7->x8->x9->
HASH4: x10->x11

Swap the 4 hashes

HASH4: x1->x2->x3->
HASH1: x4->x5->x6->
HASH2: x7->x8->x9->
HASH3: x10->x11

Swap the 4 hashes

HASH3: x1->x2->x3->
HASH4: x4->x5->x6->
HASH1: x7->x8->x9->
HASH2: x10->x11

Swap the 4 hashes

HASH2: x1->x2->x3->
HASH3: x4->x5->x6->
HASH4: x7->x8->x9->
HASH1: x10->x11
Complete
Have you tried this wolf0?
No, because it doesn't make sense for GPU - it WOULD, however, make TONS of sense for FPGA or ASIC.

What if you have 4 gpu's in your rig and each thread is executed on a seperate gpu. x11 is then reduced to x2+.

advantages:
-Smaller kernals, bether register usage, less memory needed, more cache hits, more paralell threads
-Hybrid mining is possible. (run AES algos on the AMD, and the rest on NVIDIA)

disadvangtages:

-throughput must be passed from gpu to gpu trough the pci-E to memory and back.
-You need 4 gpu's (but the algorithm can be scalable to support x gpu's)

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

Activity: 2898
Merit: 1087

Team Black developer


View Profile
April 16, 2015, 10:42:59 AM
 #22280

What if you have 4 gpu's in your rig and each thread is executed on a seperate gpu. x11 is then reduced to x2+.

advantages:
-Smaller kernals, bether register usage, less memory needed, more cache hits, more paralell threads
-Hybrid mining is possible. (run AES algos on the AMD, and the rest on NVIDIA)

disadvangtages:

-throughput must be passed from gpu to gpu trough the pci-E to memory and back.
-You need 4 gpu's (but the algorithm can be scalable to support x gpu's)

Terrible idea - implies a device-to-host copy followed by a host-to-device copy, or at least a device-to-device copy, if I'm understanding you. Terribly slow.

You are probobly right.

Perhaps faster with a crossfire cable and a 2 gpu setup

Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
Pages: « 1 ... 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 [1114] 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 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!