Author

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

hero member
Activity: 2548
Merit: 626
ok, now --listdevices please
newbie
Activity: 38
Merit: 0
Quote
{
/* Type can be : normal, normalv7, lite, litev7, heavy, ultraheavy  */
"cryptonight_type" : "heavy",

/* Intensity 0-> auto intensity, or value from 1-200  */
"intensity" :0,

/* To use 2 threads per card set double_threads to true  */
"double_threads" : true,

/* Gpu target temperature, leave it on 0 if you don't want to use this option  */
"target_temperature" : 0,

/* If you use a SSL/TLS encrypted pool set this to true*/
"pool_use_tls" : false,

/* Mining pool address WITHOUT the stratum+tcp:// or stratum+tls:// part  */
"pool" : "pool.sumokoin.hashvault.pro:5555",

/* Address of you wallet  */
"wallet" : "Sumoo2*****",

/* Password for your wallet, probably just x  */
"password" : "x:**@gmail.com",

/* Location for devfee servers, to get better latency  */
"location" : "europe",

/* If you want to log console output, put a filename here  */
"log_file" : "sumo1.txt",

/* Settings for each GPU manually */
/* Put in devices that you want to use, if you for ex. don't want to use gpu 2, just don't insert it,like in this example */
/* Id starts from 0 , not from 1 !! */
/* To get a list of available devices with their id's, use --listdevices parameter */
/* This is just an example, edit it and remove comment lines !! */
"gpu_conf" :
[
   { "id" : 0, "intensity" : 58, "worksize" : 8, "threads" : 2},
   { "id" : 1, "intensity" : 54, "worksize" : 8, "threads" : 2},
   { "id" : 2, "intensity" : 55, "worksize" : 8, "threads" : 2},
   { "id" : 3, "intensity" : 61, "worksize" : 8, "threads" : 1},
   { "id" : 4, "intensity" : 61, "worksize" : 8, "threads" : 1},
   { "id" : 5, "intensity" : 61, "worksize" : 8, "threads" : 1},
   { "id" : 6, "intensity" : 61, "worksize" : 8, "threads" : 1},
   { "id" : 7, "intensity" : 53, "worksize" : 8, "threads" : 2},
   { "id" : 8, "intensity" : 49, "worksize" : 8, "threads" : 2},
]
}
hero member
Activity: 2548
Merit: 626
Excuse me,noob question.
where to put "--logfile filename"?
this is my bat file.

Quote
@echo off

cls
SETLOCAL EnableExtensions
set EXE=SRBMiner-CN.exe

:START
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto RUNNING
%EXE% -c config.txt  --logfile log.txt
TIMEOUT /T 5 /NOBREAK
goto START
:RUNNING
echo "%EXE% is already running"
pause

I bolded it for you Smiley
hero member
Activity: 2548
Merit: 626
post your 1.3.1 conf , and 1.3.2 conf here please
nothing was done in new version regarding hashing speeds, only some re-work of auto intensity settings.
I had to lower a little bit auto settings cause lot of users get false-good intensity value and crashing.

So you just need to increase the auto intensity value you get and insert that value instead 0 in the config file.

newbie
Activity: 10
Merit: 0
doktor,same settings, same intensity for 1.3.1 and 1.3.2 but lower hash at 1.3.2.
i didn't use automatic intensity
pozdrav !

Same thing .... about a half less than 1.3.1

... think we need to increase intensity
sr. member
Activity: 425
Merit: 250
doktor,same settings, same intensity for 1.3.1 and 1.3.2 but lower hash at 1.3.2.
i didn't use automatic intensity
pozdrav !

Same with me!
For now, I'm left with version v1.3.1
jr. member
Activity: 153
Merit: 2
Does SRBminer v1.3.2 run the new IPBC V3 algorithm?
http://54.37.94.172/pool/

On testnet it runs fine.
newbie
Activity: 41
Merit: 0
Excuse me,noob question.
where to put "--logfile filename"?
this is my bat file.

Quote
@echo off

cls
SETLOCAL EnableExtensions
set EXE=SRBMiner-CN.exe

:START
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto RUNNING
%EXE% -c config.txt
TIMEOUT /T 5 /NOBREAK
goto START
:RUNNING
echo "%EXE% is already running"
pause

Check the config.txt file mate, there you will find where exactly to put it Smiley
This config had been removed in 1.3.2  Huh
newbie
Activity: 14
Merit: 0
Excuse me,noob question.
where to put "--logfile filename"?
this is my bat file.

Quote
@echo off

cls
SETLOCAL EnableExtensions
set EXE=SRBMiner-CN.exe

:START
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto RUNNING
%EXE% -c config.txt
TIMEOUT /T 5 /NOBREAK
goto START
:RUNNING
echo "%EXE% is already running"
pause

Check the config.txt file mate, there you will find where exactly to put it Smiley
Not anymore in v1.3.2
newbie
Activity: 15
Merit: 0
Does SRBminer v1.3.2 run the new IPBC V3 algorithm?
http://54.37.94.172/pool/
member
Activity: 443
Merit: 13
Excuse me,noob question.
where to put "--logfile filename"?
this is my bat file.

Quote
@echo off

cls
SETLOCAL EnableExtensions
set EXE=SRBMiner-CN.exe

:START
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto RUNNING
%EXE% -c config.txt
TIMEOUT /T 5 /NOBREAK
goto START
:RUNNING
echo "%EXE% is already running"
pause

Check the config.txt file mate, there you will find where exactly to put it Smiley
newbie
Activity: 38
Merit: 0
doktor,same settings, same intensity for 1.3.1 and 1.3.2 but lower hash at 1.3.2.
i didn't use automatic intensity
pozdrav !
newbie
Activity: 41
Merit: 0
Excuse me,noob question.
where to put "--logfile filename"?
this is my bat file.

Quote
@echo off

cls
SETLOCAL EnableExtensions
set EXE=SRBMiner-CN.exe

:START
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto RUNNING
%EXE% -c config.txt
TIMEOUT /T 5 /NOBREAK
goto START
:RUNNING
echo "%EXE% is already running"
pause
hero member
Activity: 676
Merit: 500
I did`t get what you want me to do and for what algo Huh
newbie
Activity: 61
Merit: 0
If it isn't too much trouble could you make the miner show total average hashrate from the time the miner was started? At the moment it only shows max and average for last 5 minutes when you press "s".
hero member
Activity: 676
Merit: 500
/* Intensity 0-> auto intensity, or value from 1-300  */
"intensity" : 0,

/* To use 2 threads per card set double_threads to true  */
"double_threads" : true,
sr. member
Activity: 425
Merit: 250
I don`t understand why when mining on rx580 monero it hashes with 820h/s but when mining Sumo it hashes 920h/s . When mining with rx480 it hashes on monero 950 , but on sumo 750h , what the hell is going on? I tried it with different miners , what is the logic?

What are the settings for the config.txt file and the intensity you achieve at 950 h/s at rx480?
hero member
Activity: 676
Merit: 500
I don`t understand why when mining on rx580 monero it hashes with 820h/s but when mining Sumo it hashes 920h/s . When mining with rx480 it hashes on monero 950 , but on sumo 750h , what the hell is going on? I tried it with different miners , what is the logic?
member
Activity: 443
Merit: 13
As soon as 1.3.2 hit, I started mining with it. So far I can say I am absolutely amazed by the performance of this miner, great work doc! I have noticed, that I need to run the miner at max 35 intensity tho, because if I go higher one or two of the cards start hashing with 300h/s less after some time. Dunno if the problem is within the BIOS mod or the cards are weak, but they are all 3months old, do not know if that may be the case with them.
Still pulling 4.4kh/s on the heavy algo, making substantial profit in comparison to ETH mining!
Big up for the doc, hvala brate!
newbie
Activity: 21
Merit: 0
Hello doktor thanks for your explanations !

My hashrate with 6vega 64 drops even when i set fan at 100% on afterburner.

Do you think That it will be useful to use overdrive instead and set the fan speed at 3000rpm ?

Thanks a lot for your work !
Jump to: