Author

Topic: SRBMiner Cryptonight AMD GPU Miner V1.9.3 - native algo switching - page 276. (Read 237247 times)

newbie
Activity: 21
Merit: 0
@Doktor83 - is there any way to increase logging output? I am having a daily crash and the log is not catching anything. The log is continuing normal with no errors and the next timestamp is when I restart the miner.
newbie
Activity: 21
Merit: 0
hey guys, what sort of tool do you use otherthan overdriven? all my GPUs (580,570,560) are having MUCH higher voltages than the 875-900 mv in the bios.... this is new though with 18.3.4 and latest windows 1709 (DON'T do april, as usual, microsoft is sooo stupid destroying everything).
Also, does anyone have Good Elpida (BABG) and Hynix (AJR) timings (4gb Ellsemere GPUs) other than the one click?
I have some 560s which have no more gains with clocking memory over 2000 (eplida) hash rate is maxed at 548 changing core from 1050-1200+++ doesnt do anything.


I wouldn't call them 'good' as all i did was copy 1500 strap to the higher versions. I have 2 Hynix 570 Gaming X 4GB cards that are hashing right at 700h/s (CN-heavy) using autointensity (50). 1350/1000mv and mem is 2000/850. I see little to no benefit in memory clock and only see a difference in hashrate on Core clock.
My one other card is the same but has Samsung. I am having issues with it hanging/crashing the miner itself or windows. I believe it doesn't like the memory timing so I need to change it I just haven't taken the time to do that yet and currently deal with restarting the miner every ~24 hours or so.
newbie
Activity: 35
Merit: 0
@Doktor83 - does SRB cache the GPU compile data anywhere on the hard drive to speed up the process in future? I've noticed that one GPU (Vega 64) will not perform better on Heavy no matter what I do but when testing Alloy it outperforms the other GPUs (Vega 56). My current suspicions are that there's either a bug in your implementation for Vega 64 or there's some caching happening and I need to delete these files.

Thanks.
full member
Activity: 729
Merit: 114
for some reason cryptonight heavy hashrates seems to be inconsistent on similar settings.  It goes 1530 drops to 1380 if monitor is turned off or sometimes just starts at 1380.

If we play around with intensities like increase to 60 the hashrate would be 13xx/14xx but then again when you drop it back to 56 and restart the hashrates are 1560 on Vega 56.  So weird)



Turn off display and the hashrate goes away.  back to 14xx.
newbie
Activity: 34
Merit: 0
Disable GPU by key pressed not working correctly.
When i try to disable gpu 10, 11, 12 with Shift key nothing happen, but if then i try to disable gpu 1 when all 4 card will disable

[2018-05-10 01:36:43] Stopping GPU1, please wait...
[2018-05-10 01:36:43] Stopping GPU10, please wait...
[2018-05-10 01:36:43] Stopping GPU11, please wait...
[2018-05-10 01:36:43] Stopping GPU12, please wait...
full member
Activity: 729
Merit: 114

--gpureorder and --listdevicesreordered does not work as expected. More precisely, the first parameter works, but I get the result with the command "SRBMiner-CN.exe --listdevicesreordered", I see that I need to set "worksize = 8" for BUSID 12 and 13, which corresponds to DeviceID [7] and DeviceID [8] When setting up ' gpu_conf for IDs 7 and 8, but as a result, the values for cards with BUSID 2 and 4 change

ver 1.5.1
ver 1.5.2

Right, i will look into it. Also im thinking about dropping GPU id thing, and just use BUSid instead, it would be much cleaner, as bus id is always the same, but gpu index changes on reordering, and everything has to be reordered in back, but looks like i left out something somewhere.

Yup that looks to be much cleaner approach since all other 3rd party tools also use similar approach.  it's easier to debug a faulty gpu too.
hero member
Activity: 2548
Merit: 626

--gpureorder and --listdevicesreordered does not work as expected. More precisely, the first parameter works, but I get the result with the command "SRBMiner-CN.exe --listdevicesreordered", I see that I need to set "worksize = 8" for BUSID 12 and 13, which corresponds to DeviceID [7] and DeviceID [8] When setting up ' gpu_conf for IDs 7 and 8, but as a result, the values for cards with BUSID 2 and 4 change

ver 1.5.1
ver 1.5.2

Right, i will look into it. Also im thinking about dropping GPU id thing, and just use BUSid instead, it would be much cleaner, as bus id is always the same, but gpu index changes on reordering, and everything has to be reordered in back, but looks like i left out something somewhere.
newbie
Activity: 14
Merit: 0
V1.5.2
- Added support for ADL Overdrive5, in gpu_conf add 'adl_type' = 1 for OverdriveNext , 2 for Overdrive5, if not set default is 1 (OverdriveNext)
- Parameter 'restart_devices_on_startup' now only restarts Vega GPU'S, cause others don't need restarting to get max performance
- Disable/enable GPU while mining now happens almost instantly
- Added '--gpureorder' parameter (use in bat)  to order devices by BUSID like GPU-Z does
- Added '--listdevicesreordered' that lists devices in BUSID order, for usage with '--gpureorder' parameter

+ If your GPU temperature or fan speed isn't displayed when pressing 'h' , try adding 'adl_type' : 2 in gpu_conf :

"gpu_conf" :
[
   { "id" : 0, "intensity" : 0, "worksize" : 8, "threads" : 2, "adl_type" : 2}
]


Also you can try type 2 if 'target_fan_speed' isn't working for you with the default OverdriveN.
Basically :
Type 1 : Use OverdriveN (mostly for newer cards)
Type 2 : Use Overdrive5 (mostly for older cards)


+ If you want to order your GPU's like in GPU-Z or OverdriveNTool, put parameter --gpureorder in .bat like :

FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto RUNNING
%EXE% --config config.txt --pools pools.txt --gpureorder
TIMEOUT /T 15 /NOBREAK

When setting up 'gpu_conf' in config but want to use the BUSID ordering, first list devices with --listdevicesreordered parameter to get the reordered gpu id's :

SRBMiner-CN.exe --listdevicesreordered

+ The 'restart_devices_on_startup' parameter now looks only for Vega GPU'S, and disables/enables only those before mining.

--gpureorder and --listdevicesreordered does not work as expected. More precisely, the first parameter works, but I get the result with the command "SRBMiner-CN.exe --listdevicesreordered", I see that I need to set "worksize = 8" for BUSID 12 and 13, which corresponds to DeviceID [7] and DeviceID [8] When setting up ' gpu_conf for IDs 7 and 8, but as a result, the values for cards with BUSID 2 and 4 change

ver 1.5.1 https://ibb.co/e0m6ES https://ibb.co/d74417
ver 1.5.2 https://ibb.co/m1XeZS https://ibb.co/nQYson
member
Activity: 161
Merit: 10
I am using v1.4.2 still, has the "app has stopped responding" been fixed yet in 1.5.2 or somewhere in between? I get it random, once every 2-3 days, no dropped gpus, everything is fine if I just start again the miner.
full member
Activity: 729
Merit: 114
Hello Guys

I Have One Vega FE and One rx 570 , i want to set different setting on each card , it is possible ?

i try in config file like this , then i run miner but its shows auto parameters which is set by miner , not mine

please advise




On My Rx i want to set 59 intensity , single thread
And on Vega FE i want set intensity 120 and double threads



See the bottom of config file the gpu_conf you can set individual parameters.  Uncomment and edit out.
newbie
Activity: 4
Merit: 0
Hello Guys

I Have One Vega FE and One rx 570 , i want to set different setting on each card , it is possible ?

i try in config file like this , then i run miner but its shows auto parameters which is set by miner , not mine

please advise

https://preview.ibb.co/hb6aPS/config.jpg
https://preview.ibb.co/ibHh4S/miner.jpg

On My Rx i want to set 59 intensity , single thread
And on Vega FE i want set intensity 120 and double threads

member
Activity: 80
Merit: 13
hey guys, what sort of tool do you use otherthan overdriven? all my GPUs (580,570,560) are having MUCH higher voltages than the 875-900 mv in the bios.... this is new though with 18.3.4 and latest windows 1709 (DON'T do april, as usual, microsoft is sooo stupid destroying everything).
Also, does anyone have Good Elpida (BABG) and Hynix (AJR) timings (4gb Ellsemere GPUs) other than the one click?
I have some 560s which have no more gains with clocking memory over 2000 (eplida) hash rate is maxed at 548 changing core from 1050-1200+++ doesnt do anything.
jr. member
Activity: 113
Merit: 1
I don't know how you guys do it.
My Vega 56's (Reference models) with Vega 56 BIOS runs 2010H/s on Normal V7 but on Heavy I am not able to get more than 1350H/s.

I have even now tried Vega 56 @ 1437/1100 907mV -30 power target on 56 intensity but no luck still only get 1350H/s per card.

My normal clocks on NormalV7 are: 1475/1100 @ 915 and 900
set intensity 60 worksize 8 run miner, then close miner set intensity 56 worksize 8 and run miner again, you should able to get more than 1500 h/s.
Thanks I am using intensity 62 now and getting 1480H/s which is much better Smiley
Can confirm now switching to srbminer.https://imgur.com/PBpGx39. @doktor83 looks like I'll be staying on blockchain drivers for a while. Can you help me out with these errors? (https://imgur.com/X2RtT4W= without admin priv., https://imgur.com/PmdXaSR= ran on admin mode.)
My config:"restart_devices_on_startup" :true,
"restart_devices_on_startup_script" :"Run_OverdriveNTool.bat", my batchfile: OverdriveNTool.exe -r0 -p0Vega56
jr. member
Activity: 196
Merit: 1
Hi Doc

I'm trying to setting up SRB in Awesomeminer. But I created two workers (one for 580 8GB and other for 570 4GB) and I can't run separated 'cause I can't set it by command line (like -d or -di).

Is there a possibility to setup the config.txt as .bat arguments? Like -d 1 -i 54 -t 2?

You can set different config.txt's and have that run in .bat:

--config config580.txt

and the other with
--config config570.txt


Ya, I know.

But Awesome has his own config.txt file.
jr. member
Activity: 158
Merit: 5
Hi Doc

I'm trying to setting up SRB in Awesomeminer. But I created two workers (one for 580 8GB and other for 570 4GB) and I can't run separated 'cause I can't set it by command line (like -d or -di).

Is there a possibility to setup the config.txt as .bat arguments? Like -d 1 -i 54 -t 2?

You can set different config.txt's and have that run in .bat:

--config config580.txt

and the other with
--config config570.txt

jr. member
Activity: 196
Merit: 1
Hi Doc

I'm trying to setting up SRB in Awesomeminer. But I created two workers (one for 580 8GB and other for 570 4GB) and I can't run separated 'cause I can't set it by command line (like -d or -di).

Is there a possibility to setup the config.txt as .bat arguments? Like -d 1 -i 54 -t 2?
jr. member
Activity: 158
Merit: 5
Hashrate lottery..

Hi all, I'm getting the occasioanal 1000 mh/s from some of my identical rx580's with identical OC parameters, other times they do 930-950, but it's so random.. With the same settings, in one run the same gpu may do 1000, the next run it's 950 but another one takes the crown... Do you have any idea why this would happen? Using auto-intensity which sets at 51. If I manually set it to 50 I get slightly lower hashrate (duh), if I set it to 52 a couple or more doesn't start hashing.

I *once* managed 1000 mh/s from all of them, it wasn't even a clean re-start, but a switch between xmr-stak.. Would love to hear why this would happen.

jr. member
Activity: 113
Merit: 1
Sorry if I have missed something.

It seems the miner will not switch back to the first pool even though the pool is back online. Is there a option to enable this feature?
Great Idea! First pool should have some priority list or something in the config. If you're a new miner and pools have high payouts requirements.
newbie
Activity: 7
Merit: 0
Sorry if I have missed something.

It seems the miner will not switch back to the first pool even though the pool is back online. Is there a option to enable this feature?

Also, it will be great if we can force nicehash support instead of relying on the pool address.
jr. member
Activity: 230
Merit: 1
I don't know how you guys do it.
My Vega 56's (Reference models) with Vega 56 BIOS runs 2010H/s on Normal V7 but on Heavy I am not able to get more than 1350H/s.

I have even now tried Vega 56 @ 1437/1100 907mV -30 power target on 56 intensity but no luck still only get 1350H/s per card.

My normal clocks on NormalV7 are: 1475/1100 @ 915 and 900



set intensity 60 worksize 8 run miner, then close miner set intensity 56 worksize 8 and run miner again, you should able to get more than 1500 h/s.

Thanks I am using intensity 62 now and getting 1480H/s which is much better Smiley
Jump to: