Bitcoin Forum
May 24, 2024, 09:01:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 [39] 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 ... 164 »
761  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 11, 2019, 08:38:17 AM
Hello doktor83

is it possible to merge mine with SRBminer Haven Protocol + Bloc.Money as it's described here? ->

https://bitcointalk.org/index.php?topic=2989487.msg50553711#msg50553711

I'm using SRBminer only for CN coins, usually mining XHV

Of course it is, the setup depends from the pool but here's an example :

Code:
{
"pools" :
[
{
"pool" : "havenbloc.herominers.com:10451",
"wallet" : "HAVEN-WALLET",
"password" : "BLOC-WALLET"
}
]
}

or if you prefer cmd:

Code:
SRBMiner-CN.exe --ccryptonighttype haven --cpool havenbloc.herominers.com:10451 --cwallet HAVENADDRESS --cpassword BLOCADDRESS

good  Cool

If I'm using the exchange wallet, I need to enter not only the wallet address, but the payment ID too
where do I have insert the payment ID?

The format on herominers is HAVENADDRESS+paymentID and BLOCADDRESS+paymentID
762  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.1 - native algo switching on: April 11, 2019, 08:18:53 AM
Why am I getting a lot of rejected shares? "Pool rejected result 0x000074E1 for job[2] [low difficulty share]" By a lot I mean some, most shares are ofcourse accepted but still, quite frequent.

Pool difficulty is set at 120000 by default. May I change it for better results?

The pool I'm using is nanopool.org btw.


You get low diff shares when your gpu returns a bad result. So loosen on your OC , or depending of your card, maybe you use 'bad' mem. straps.

Is there any way to see what GPU that is getting this error, if it's just one or all GPUs? I can see how many errors and frequency in %. It just says what job number it is?

95,5% accepted shares. Maybe not much to care about in about one hour?


Yes, it would be nice if the "low difficulty" error actually reported which GPU caused the error. With multiple GPUs, how am I supposed to know exactly which one is causing the problem so I can tweak settings?

i will add with every accepted/rejected share message the gpu and bus id the share was from
763  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 11, 2019, 08:15:30 AM
Hello doktor83

is it possible to merge mine with SRBminer Haven Protocol + Bloc.Money as it's described here? ->

https://bitcointalk.org/index.php?topic=2989487.msg50553711#msg50553711

I'm using SRBminer only for CN coins, usually mining XHV

Of course it is, the setup depends from the pool but here's an example :

Code:
{
"pools" :
[
{
"pool" : "havenbloc.herominers.com:10451",
"wallet" : "HAVEN-WALLET",
"password" : "BLOC-WALLET"
}
]
}

or if you prefer cmd:

Code:
SRBMiner-CN.exe --ccryptonighttype haven --cpool havenbloc.herominers.com:10451 --cwallet HAVENADDRESS --cpassword BLOCADDRESS
764  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 10, 2019, 05:09:22 AM
How to check intensity that is automatically set by 0 setting?

I have RX 470s that keep crashing on 0 setting, I want to try lower intensity but don't know where to start, anyone here using RX 470s that wants to share their intensity setting?

Thanks.

When the miner starts it writes out the found gpu's and the settings. There you can see I:number where that number is the intensity.
You can find on the first page how to manually set gpu's, by using gpu_conf.

Code:
"gpu_conf" : 
[
{ "id" : 0, "intensity" : 50 , "worksize" : 16, "threads" : 2},
{ "id" : 1, "intensity" : 53 , "worksize" : 16, "threads" : 2}
]
765  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 08, 2019, 05:08:35 PM
Because some reported 'random miner crashes not related to gpu crashes', i made a little tool as a workaround, until i find the bug(s) and fix them.
This tool serves as a replacement for scripts you can set up to monitor the miner process and start it if it's not running.


SRB-RESTARTER

Only 3 parameters :

--interval value_in_seconds [def. is 10]
Specifies how often to check is the SRBMiner process running

--instance number
Use it if you run multiple SRBMiner instances on the same machine, example is below
You must use the following file naming :
SRBMiner-CN-n.exe where n is the instance number

--run filename [name of .bat file to run]
Name of .bat you want to run if SRBMiner process in not running


Note:
Miner is considered 'not running' after 2 checks!

Examples:

1.
SRB-Restarter.exe
[This will set interval to 10 seconds, and start.bat if SRBMiner process is not running. It will monitor for a process named SRBMiner-CN.exe]

2.
SRB-Restarter.exe --interval 5 --run turtle-coin.bat
[This will set interval to 5 seconds and run turtle-coin.bat if SRBMiner process is not running. It will monitor for a process named SRBMiner-CN.exe]

3.
SRB-Restarter.exe --interval 30 --run start-heavy.bat --instance 1
[This will set interval to 30 seconds and run start-heavy.bat if SRBMiner process is not running. It will monitor for a process named SRBMiner-CN-1.exe]


If you copy the whole folder from the .zip into SRBMiner folder, you have an example SRB-Restart.bat inside that will check for the SRBMiner-CN.exe process every 5 seconds, and run start.bat that is in the main miner folder (that's why the '..\start.bat', it means one level back).

Link is on the first page or HERE

766  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - startup_script on: April 07, 2019, 11:44:49 AM
How to write startup_script: -cclock, -mclock, -cvddc, -mvddc and run it?
Thank.

First download a Claymore miner, then try those commands.

I asked about startup_script.

SRBMiner does not have cclock, -mclock, -cvddc, -mvddc parameters
767  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - Cryptonight V4 (R) on: April 07, 2019, 11:38:41 AM
Algorithm: Cryptonight V4 (R) - after 1 minute of work produces multiple errors!
Same here , i switched to another miner , until this will solved Wink

Maybe you guys could give a little more info, because i can't really help you if you say 'it s not working'.
I have rx550,560, rx470,480,570,580 4g and 8g. Vega56 and its working on every rig. Also i guess it works for the majority because this forum thread would be flooded with 'not working' messages.
768  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 06, 2019, 10:42:27 AM
Can we use "persistent_memory" in the CMD Line?

No, but that parameter is anyways only used when old mode is enabled, and i think it became.. useless


Doc, do we know why TR has such different power consumption compared to other miners?
Are you working on this? Well, I hope something similar can be implemented in your miner too  Wink



We all know why, but we - the others - who don't have enough knowledge with GCN asm, probably can't do much atm.
769  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 05, 2019, 05:20:53 AM
Dok, could you remove the 120 minutes cap of --maxnosharesent for next release?

Thank you

I will make that parameter optional, so if it's not used there won't be any default value. Also will set the max to 24h.
This parameter can get 'crazy' when windows re-adjusts time if ntp is used, so it's better if its not on by default.


Hi, Doc!
I have a few questions that I would like to clarify:
1. If I use config file, where I specify gpu-only parameters (intensity, threads, worksize), then parameters rebootscriptgpuwatchdog and rebootscriptminrigspeed, which specified via cmd, not working. But if these parameters specify in config file, they are working. So, is it possible to give priority to cmd input over config file?
2. Is it possible to add support for variables for pools file? If you have many rigs you must specify worker name, in pools.txt, on each of them, and it's not comfortable. But worker name can be taken from variable %computername%.

1. You set everything either in config, or cmd. There is no more mixing of these two since 1.8.0 . So you can set --rebootscriptgpuwatchdog and --rebootscriptminrigspeed

2. Sorry but no. It would take too much time, and i don't think it's such a valuable option.
770  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 03, 2019, 08:29:20 AM
Quote
Ok, so Vega64, on V4 algo, right?
Are you using text config file or cmd ?

Please paste it here.

If there was such a bug in miner i guess others would also report Smiley
Correct. 64 on v4.

I've just changed my wallet at pools.txt, everything else is stock. What is weird, because this is working with 1.8.1. But for some reason 1.8.2 breings only 1100Hs, instead of 2000+.

Could you try to paste this in a .bat file and run :

Code:
setx GPU_FORCE_64BIT_PTR 1
setx GPU_MAX_HEAP_SIZE 100
setx GPU_MAX_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_MAX_SINGLE_ALLOC_PERCENT 100
@echo off
cd %~dp0
cls

SRBMiner-CN.exe --ccryptonighttype cryptonight_r --cgpuid 0 --cgpuintensity 120 --cgpuworksize 16 --cgputhreads 2 --cpool xmr-eu1.nanopool.org:14444 --cwallet 4A5hJyu2FvuM2azexYssHW2odrNCNWVqLLmzCowrA57xGJLNufXfzVgcMpAy3YWpzZSAPALhVH4Ed7xo6RZYyw2bUtbm12g --cpassword x
pause
771  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 03, 2019, 08:06:57 AM
Quote

Nothing is wrong. Which driver are you using, and did you enable compute mode?

Used 19.2.2, and had 2000+Hs on 1.8.1 but 1100Hs with 1.8.2 then updted driver to 19.3.3. Same results, 1.8.2. hasing only the half of 1.8.1.

Compute mode is unavailable when you have got vega, you can change it with lower cards, like 580X. So stock driver, and HBCC off.

Dok, same with 19.4.1.

Ok, so Vega64, on V4 algo, right?
Are you using text config file or cmd ?

Please paste it here.

If there was such a bug in miner i guess others would also report Smiley
772  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 02, 2019, 07:33:36 PM
doc, regarding loki-turtle , i have 2 gfx in one system, i checked your youtube video. How do i limit this mining to one GFX?

i tried changing specific config file for loki-turtle by adding:

"gpu_conf" :
[
   { "id" : 1, "intensity" : 60 , "worksize" : 8, "threads" : 2},
   
]

but miner instantly shuts down if i add this to cfg file

You probably miss a comma somewhere. It is easier to set it in cmd :

loki-turtle.bat:

Code:
SRBMiner-CN.exe --ccryptonighttype turtle --cgpuid 1 --cgpuintensity 60 --cgpuworksize 8 --cgputhreads 2 --cpool lokiturtle.herominers.com:10521 --cwallet your-loki-wallet --cpassword your-turtle-wallet

A note : if you set a non existent cgpuid it will ignore it, and instead try to load the default config.txt.

Turtlecoin devs will implement Argon2ID algo in their next fork (height will be 1.8M), will you propose this algo with SRB ?

Probably not because its not a CN algo.
773  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 02, 2019, 03:06:11 PM

I don't try another algorithm yet, sorry.

V4 has a known bug, that it runs out of memory, so make sure you have a big big virutal mem allocated.
774  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 02, 2019, 02:50:27 PM
doc, regarding loki-turtle , i have 2 gfx in one system, i checked your youtube video. How do i limit this mining to one GFX?

i tried changing specific config file for loki-turtle by adding:

"gpu_conf" :
[
   { "id" : 1, "intensity" : 60 , "worksize" : 8, "threads" : 2},
   
]

but miner instantly shuts down if i add this to cfg file

You probably miss a comma somewhere. It is easier to set it in cmd :

loki-turtle.bat:

Code:
SRBMiner-CN.exe --ccryptonighttype turtle --cgpuid 1 --cgpuintensity 60 --cgpuworksize 8 --cgputhreads 2 --cpool lokiturtle.herominers.com:10521 --cwallet your-loki-wallet --cpassword your-turtle-wallet

A note : if you set a non existent cgpuid it will ignore it, and instead try to load the default config.txt.
775  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 02, 2019, 05:49:29 AM
i´m not able to run more than one instance - miner cant open config file....how can i run more than one instances now with different algos?!

Create multiple .bat files and thats it, edit and change to point to different config and pool files

i used multiple batch files all the time...but without config file

SRBMiner-CN.exe --ccryptonighttype upx --cgpuid 0,1,2,3,4 --cgpuintensity 0,0,0,0,0 --cgputhreads 2,2,2,2,2 --sendallstales --cpool xxxxxxxxxx --cwallet nxxxxxxxxxxx --cpassword x --logfile upx.txt --gpureorder
SRBMiner-CN.exe --ccryptonighttype mox --cgpuid 5 --cgpuintensity 00 --cgputhreads 2 --sendallstales --cpool xxxxxxxxxx --cwallet nxxxxxxxxxxx --cpassword x --logfile mox.txt --gpureorder

worked all the time..but not with new version...it´s much easier to change only the bat instead of multiple config files

btw...loooong time ago i have to use different config files...why now change to old style?

It should work with cmd parameters too, i mean theres no limit or something.

first instance creates the config.txt for this instance (with for example UPX settings in the config.txt) and the second instance cant rewrite the config.txt cause it´s write protected

and:

D:\SRBMiner-CN18.exe --ccryptonighttype mox --cgpuid 6 --cgpuintensity 0 --cgputhreads 2 --sendallstales --cpool xxxxxxxxxx --cwallet xxxxxxxx --cpassword x --logfile mox.txt --gpureorder --config D:\SRBMiner\Config\config-mox.txt
it will use all available GPU´s instead of gpu 6   :/

gpu6 is the 7th gpu. do you have 7 gpus ? Smiley

Config files are not created when you run the miner, i don't really understand you sorry.

If you run from cmd parameters there is no need for --config, because it totally is not used anymore since 1.8.0
776  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 02, 2019, 05:44:53 AM
I don see any error in log.
More log here https://pastebin.com/XY2Ci6c5
I have this erro already 3 time on different Rig.

I never saw/had the miner shutdown gracefully by itself Smiley
Not sure (going to check) but i think the shutdown with resource cleanup is defined only on 3 places in code : ctrl+c, window close on X, and algo switch if using the miner reset switch.
So i have no clue how could this happen by itself.

Now i see window with error
https://i.imgur.com/w2VI26q.png
and log
https://pastebin.com/fm0gSfHv
This is 4 times when I see this error.

Ok, so is this happening only on CN V4 ?
777  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 01, 2019, 07:29:38 PM
i´m not able to run more than one instance - miner cant open config file....how can i run more than one instances now with different algos?!

Create multiple .bat files and thats it, edit and change to point to different config and pool files

i used multiple batch files all the time...but without config file

SRBMiner-CN.exe --ccryptonighttype upx --cgpuid 0,1,2,3,4 --cgpuintensity 0,0,0,0,0 --cgputhreads 2,2,2,2,2 --sendallstales --cpool xxxxxxxxxx --cwallet nxxxxxxxxxxx --cpassword x --logfile upx.txt --gpureorder
SRBMiner-CN.exe --ccryptonighttype mox --cgpuid 5 --cgpuintensity 00 --cgputhreads 2 --sendallstales --cpool xxxxxxxxxx --cwallet nxxxxxxxxxxx --cpassword x --logfile mox.txt --gpureorder

worked all the time..but not with new version...it´s much easier to change only the bat instead of multiple config files

btw...loooong time ago i have to use different config files...why now change to old style?

It should work with cmd parameters too, i mean theres no limit or something.
778  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 01, 2019, 07:20:21 PM
i´m not able to run more than one instance - miner cant open config file....how can i run more than one instances now with different algos?!

Create multiple .bat files and thats it, edit and change to point to different config and pool files
779  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 01, 2019, 05:20:46 PM
I don see any error in log.
More log here https://pastebin.com/XY2Ci6c5
I have this erro already 3 time on different Rig.

I never saw/had the miner shutdown gracefully by itself Smiley
Not sure (going to check) but i think the shutdown with resource cleanup is defined only on 3 places in code : ctrl+c, window close on X, and algo switch if using the miner reset switch.
So i have no clue how could this happen by itself.
780  Alternate cryptocurrencies / Mining (Altcoins) / Re: SRBMiner Cryptonight AMD GPU Miner V1.8.2 - native algo switching on: April 01, 2019, 05:17:01 PM
What is the most profitable coin to mine with an 290x right now? Should I bother to mine at all if I don't have very cheap electricity? What are you guys mining right now?

Go with loki+turtle combination, i think that's your best shot ATM.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 [39] 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 ... 164 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!