Bitcoin Forum
September 19, 2025, 02:31:18 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 [218] 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 ... 325 »
  Print  
Author Topic: Claymore's CryptoNote AMD GPU Miner v11.3  (Read 2145112 times)
garytheasshole
Full Member
***
Offline Offline

Activity: 406
Merit: 105


Chosŏn Minjujuŭi Inmin Konghwaguk


View Profile WWW
September 22, 2017, 12:05:29 PM
 #4341

Thank you
i will buy if i get some money but
until i buy can i profit from this gpu

You can but probably not with mining monero, the difficulty is through the roof and you'll never get the same profits as you did before. It's hard being the little guy, your best bet is to catch some new coins early and mine them at low diff and hope they'll go to moon once they're listed on an exchange, mining well established coins isn't going to be profitable for you at all, too many people have too many gpus.

karim_hassan777
Newbie
*
Offline Offline

Activity: 58
Merit: 0


View Profile
September 22, 2017, 12:19:14 PM
 #4342

Thank you
i agree with you but can suggest a coin for this
i have another rig consists of 3 RX 580 + 2 RX 570 all minig etherum and i cannot attach R7 265 with them cause it's 2Giga and cannot mine etherum
is it more profitable to attach it with them and mine monero than stay the same and mine etherum as it
garytheasshole
Full Member
***
Offline Offline

Activity: 406
Merit: 105


Chosŏn Minjujuŭi Inmin Konghwaguk


View Profile WWW
September 22, 2017, 12:21:42 PM
 #4343

Thank you
i agree with you but can suggest a coin for this
i have another rig consists of 3 RX 580 + 2 RX 570 all minig etherum and i cannot attach R7 265 with them cause it's 2Giga and cannot mine etherum
is it more profitable to attach it with them and mine monero than stay the same and mine etherum as it

Try https://whattomine.com/coins/168-hush-equihash

nadrojcote
Full Member
***
Offline Offline

Activity: 234
Merit: 102


View Profile
September 22, 2017, 03:58:12 PM
 #4344

Thank you
i agree with you but can suggest a coin for this
i have another rig consists of 3 RX 580 + 2 RX 570 all minig etherum and i cannot attach R7 265 with them cause it's 2Giga and cannot mine etherum
is it more profitable to attach it with them and mine monero than stay the same and mine etherum as it

Just use nicehash miner and it will pick the most profitable for you.
Sam123
Hero Member
*****
Offline Offline

Activity: 980
Merit: 502


View Profile
September 22, 2017, 06:40:37 PM
 #4345

Hi,

Would you recommend buying RX580 rx 580 red devil 8GB?
Also will you power only 8Pin or need 6 Pin+8 Pin need to be connected to PSU?
Thanks
Ethorsen
Newbie
*
Offline Offline

Activity: 16
Merit: 1


View Profile
September 22, 2017, 10:15:08 PM
 #4346

Hi,

Would you recommend buying RX580 rx 580 red devil 8GB?
Also will you power only 8Pin or need 6 Pin+8 Pin need to be connected to PSU?
Thanks

Of all my cards the XFX and PowerColor are the worst.  So no I would not recommend.   If I had to buy again I would stick with Sapphire and MSI in that order.

For the other question, to mine XMR/Cryptonote currency you don't need that much energy so a single 8 PIN connector is usually enough.
doktor83
Hero Member
*****
Offline Offline

Activity: 2926
Merit: 626


View Profile WWW
September 23, 2017, 08:01:58 AM
 #4347

greed is what makes this world spin

SRBMiner-MULTI thread - HERE
http://www.srbminer.com
garytheasshole
Full Member
***
Offline Offline

Activity: 406
Merit: 105


Chosŏn Minjujuŭi Inmin Konghwaguk


View Profile WWW
September 23, 2017, 08:40:05 AM
 #4348

It's far easier to just edit the packet data on the fly than to mess with the executable anyway ;p

Claymore (OP)
Donator
Legendary
*
Offline Offline

Activity: 1610
Merit: 1325

Miners developer


View Profile
September 23, 2017, 08:42:24 AM
 #4349

About Vega support on Linux - really, I know you're not a Linux type guy... but you honestly should check that shit out. AMD worked with the LLVM/Clang people to get complete support for pretty much every GCN version up to Vega. Now, you're probably thinking that you more or less have the same shit on Windows... but the killer feature of the new toolchain (for me, at least), was the fact that you no longer should ever have to write your kernel in nothing but ASM starting from the ground up, or as I did sometimes, feed the AMD Catalyst OCL compiler some C that it hopefully doesn't fuck up too badly with, and then disassemble the result for (usually quite substantial) modifications. Instead, you first have complete (more or less) control over the emitted ISA through the use of inline assembly. While it is currently slightly stupid (for example, if told that it is to take three uints as input, one uint as output, and via the constraints you aren't specific enough and instead of specifying the TYPE of GPR (VGPR or SGPR - there's a generic constraint that simply specifies it must be a GPR and the compiler should decide), you tell it to simply use a register... it might choke when building due to the register allocator deciding to emit ISA to the assembler that is impossible to encode. In my case, it was that it attempted to use v_alignbit_b32 with a VGPR as the output, one more VGPRa as a param, and the other two params as SGPRs, which is illegal. Fixing it was simply a matter of being slightly more strict with my constraints. They even have a LARGE set of AMDGPU-specific intrinsic functions that also can be used in your OCL. Many, many kinds of common cases where one would otherwise find inline assembly the best option has been simplified even further through the use of the new builtins. The first ones that spring to mind for me are the ones which expose ds_permute_b32 and ds_bpermute_b32 to the developer in a neat and clean built-in function.  Other than the little issue I found with the register allocator being a bit dumb if I give it too much freedom (which was trivially diagnosed & fixed) - I honestly have hit far less bugs in this than the old Catalyst compiler... which offers a fraction of the functionality! Grin

As for no good *nix protections... awww. I'm not actually interested in circumventing the devfee - it's just somewhat fun; ceases to be so if you don't really try, though! Anyways - I totally get it; I don't agree it's a lost cause (well, not any more so than it being a lost cause on Windows, or any other OS), but God knows it's quite a bit more of a pain in the ass to deter someone when your program is run under *nix instead of Win.

Shit - good one spotting the license on UPX. I didn't know that.

ROCm does not support Windows, so I'm not going to migrate to it. Also I'm not interested in inline asm and don't have to write in asm directly. Instead, I created own opencl compiler and now I don't care about any limitations or issues.

Please read Readme and FAQ in the first post of this thread before asking any questions, probably the answer is already there.
List of my miners: https://bitcointalk.org/index.php?topic=3019607
rednoW
Legendary
*
Offline Offline

Activity: 1510
Merit: 1003


View Profile
September 23, 2017, 10:00:24 AM
 #4350

ROCm does not support Windows, so I'm not going to migrate to it. Also I'm not interested in inline asm and don't have to write in asm directly. Instead, I created own opencl compiler and now I don't care about any limitations or issues.
Own opencl compiler - that sounds scary.
Wonder why you didn't buy amd gpu department yet ))
everyware
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
September 23, 2017, 11:57:03 AM
 #4351

Hi claymore,
i sent an message to you.
did u read it ?  Huh
regards

 
Claymore (OP)
Donator
Legendary
*
Offline Offline

Activity: 1610
Merit: 1325

Miners developer


View Profile
September 23, 2017, 12:13:17 PM
 #4352

Hi claymore,
i sent an message to you.
did u read it ?  Huh
regards

Yes, yesterday, if you check your private messages you will find it. If you cannot find it, please check again, "My messages" text at the top.

PS. For everyone (newbies specially) who mines to default wallet address in the miner for some reason:
Some people mine to this address sometimes, by accident or when they test my miner with default settings to check if it works, all my test rigs mine to it all the time too.
Please do not contact me directly with requests to return your coins, I cannot do it because I don't know if these coins are really yours or you are trying to cheat.
Instead, ask your pool support to contact me via PM on this forum (all popular pools have accounts here and I know them) and confirm that it is your coins, after it I will return it immediately.
I will not comment the idea to mine to default wallet, but please read Readme and find the phrase "Do not forget to specify your wallet address!" there, it will save some time for everyone.

Please read Readme and FAQ in the first post of this thread before asking any questions, probably the answer is already there.
List of my miners: https://bitcointalk.org/index.php?topic=3019607
doktor83
Hero Member
*****
Offline Offline

Activity: 2926
Merit: 626


View Profile WWW
September 23, 2017, 12:53:14 PM
 #4353

i wouldn't return anything if i were you, it's not like you forced them to mine to that address lol.
It's their fault if they won't read the readme.txt , and don't know how to set up a few cmd parameters.

SRBMiner-MULTI thread - HERE
http://www.srbminer.com
Kukus
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
September 23, 2017, 01:38:59 PM
 #4354

Also will you power only 8Pin or need 6 Pin+8 Pin need to be connected to PSU?
Thanks

As far as I understand the powering schemes, 2 sockets are made for using in "one or another" kind. I.e. no necessity connect both of them to PSU. 8-pin connector is enough for powering, while 6-pin sometime not.
Jackkyy
Full Member
***
Offline Offline

Activity: 254
Merit: 100


View Profile WWW
September 23, 2017, 08:09:54 PM
 #4355

Hi All. Looking to hopefully resolve an issue I have using Claymore's 9.7 miner.
Whenever I boot up the software, I receive a, "Error: AMD HSA Code Object loading failed".
I have browsed the Wiki, this page, and other sites and cannot find a reason behind the error nor a solution.
Here's to problem solving!

KL0nLutiy
Member
**
Offline Offline

Activity: 158
Merit: 10


View Profile
September 24, 2017, 09:51:29 AM
 #4356

@Claymore will you release new miner today?

Temporel
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
September 24, 2017, 03:25:35 PM
 #4357

Hi,

Would you recommend buying RX580 rx 580 red devil 8GB?
Also will you power only 8Pin or need 6 Pin+8 Pin need to be connected to PSU?
Thanks

Of all my cards the XFX and PowerColor are the worst.  So no I would not recommend.   If I had to buy again I would stick with Sapphire and MSI in that order.

For the other question, to mine XMR/Cryptonote currency you don't need that much energy so a single 8 PIN connector is usually enough.

 the Sapphire I have are by far the worst cards I ever bought. They also have the worst customer service IMO.
Temporel
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
September 24, 2017, 03:30:16 PM
Last edit: September 24, 2017, 03:51:21 PM by Temporel
 #4358

Hi claymore,
i sent an message to you.
did u read it ?  Huh
regards

Yes, yesterday, if you check your private messages you will find it. If you cannot find it, please check again, "My messages" text at the top.

PS. For everyone (newbies specially) who mines to default wallet address in the miner for some reason:
Some people mine to this address sometimes, by accident or when they test my miner with default settings to check if it works, all my test rigs mine to it all the time too.
Please do not contact me directly with requests to return your coins, I cannot do it because I don't know if these coins are really yours or you are trying to cheat.
Instead, ask your pool support to contact me via PM on this forum (all popular pools have accounts here and I know them) and confirm that it is your coins, after it I will return it immediately.
I will not comment the idea to mine to default wallet, but please read Readme and find the phrase "Do not forget to specify your wallet address!" there, it will save some time for everyone.

maybe its time for you remove your address and put something like "insertyourwalletaddresshere" dont you think ? Oh right, I forgot your the 2% thief...
Claymore (OP)
Donator
Legendary
*
Offline Offline

Activity: 1610
Merit: 1325

Miners developer


View Profile
September 24, 2017, 03:45:13 PM
 #4359

maybe its time for you remove your address and put something like "insertyourwalletadresshere" dont you think ? Oh right, I forgot your the 2% thief...

Thanks for your advice. Here is my experience, if I remove it:
1. People won't be able to launch "start.bat" just to check that miners works, with default settings at least.
For example, when I get PMs with support requests, often I say "just launch start.bat to check if miner works at all" and it helps in many cases, because sometimes people break something when they change options.
2. A lot of newbies won't even know the wallet address format at all.

Please read Readme and FAQ in the first post of this thread before asking any questions, probably the answer is already there.
List of my miners: https://bitcointalk.org/index.php?topic=3019607
Claymore (OP)
Donator
Legendary
*
Offline Offline

Activity: 1610
Merit: 1325

Miners developer


View Profile
September 24, 2017, 03:45:55 PM
 #4360

@Claymore will you release new miner today?

New version is almost ready, I will release it in 1-2 days.

Please read Readme and FAQ in the first post of this thread before asking any questions, probably the answer is already there.
List of my miners: https://bitcointalk.org/index.php?topic=3019607
Pages: « 1 ... 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 [218] 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 ... 325 »
  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!