Author

Topic: [NemosMiner] multi algo profit switching NVIDIA/CPU miner - page 173. (Read 289447 times)

hero member
Activity: 1274
Merit: 556
yeh im going to have 2x :  start.bat

start1.bat   original profit switching based on realtime : stats (same as currently)

start2.bat   new profit switching based : on 1 hour or 24 average btc/perGHS price (new)

Best Regards
Nemo

p.s The -SelGPU option is done and tested working very well on my test rigs 1070's and 1080ti's
Wow ...
This new start2 gonna be awesome.
I dont rememebr does nemos stop miner if zpool api not respond
if so could you find a way so the miner wont stop when Zpool api not responded ?
It happens a lot.
I think if you implement some way so main scrypt 1st download profit file from zpool api, make it ready to use , then replace them with old ones and if not succefull skip till next sync interval,
so shell always have profit files to use and wont give the "No Miner"
Sounds like a smart thing to implement.
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
yeh im going to have 2x :  start.bat

start1.bat   original profit switching based on realtime : stats (same as currently)

start2.bat   new profit switching based : on 1 hour or 24 average btc/perGHS price (new)

Best Regards
Nemo

p.s The -SelGPU option is done and tested working very well on my test rigs 1070's and 1080ti's
Wow ...
This new start2 gonna be awesome.
I dont rememebr does nemos stop miner if zpool api not respond
if so could you find a way so the miner wont stop when Zpool api not responded ?
It happens a lot.
I think if you implement some way so main scrypt 1st download profit file from zpool api, make it ready to use , then replace them with old ones and if not succefull skip till next sync interval,
so shell always have profit files to use and wont give the "No Miner"
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
Greetings Minerx,
hope you recovered from illness. Nice to see you back in github action.
What is the purpose of deleting profit.txt via resetprofit.bat?

thanks still sick but battling on..
its simply a faster way of clearing "STATS" folder..  to re run benchmarks

Nemo

sr. member
Activity: 308
Merit: 250
Greetings Minerx,
hope you recovered from illness. Nice to see you back in github action.
What is the purpose of deleting profit.txt via resetprofit.bat?
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
I have a rig with a bunch of mixed cards.  How do I go about selecting what say GPU 2,3 or 2 only?

Looking at that code I can only go so far with it.

Hi

Like this:

https://github.com/nemosminer/NemosMiner-v2.0-Zpool/archive/master.zip

step 1 edit: start.bat

eg: 6card rig -SelGPUEWBF '0 1 2 3 4 5' -SelGPUCC '0,1.2.3.4.5'

eg: 1 card rig -SelGPUEWBF '0' -SelGPUCC '0'

eg. 6card rig with only card 2 and 5 enabled -SelGPUEWBF '2 5' -SelGPUCC '2,5'

: )

Best Regards
Nemo
member
Activity: 104
Merit: 18
I have a rig with a bunch of mixed cards.  How do I go about selecting what say GPU 2,3 or 2 only?

Looking at that code I can only go so far with it.
full member
Activity: 349
Merit: 102
testing profit switching options now

                            Stat.Live (btcper/GHS Currently in NemosMiner)
                            Stat.Hour (average btcper/GHS of last hour)
                            Stat.Day (average btcper/GHS of last 24hours)
                            Stat.Week (average btcper/GHS of last week)

Best Regards
Nemo

Cool this will be interesting. Thanks for all the recent work!
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
testing profit switching options now

                            Stat.Live (btcper/GHS Currently in NemosMiner)
                            Stat.Hour (average btcper/GHS of last hour)
                            Stat.Day (average btcper/GHS of last 24hours)
                            Stat.Week (average btcper/GHS of last week)

Best Regards
Nemo
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
Hi Nemos !
1. add the choice of switching miner on the analysis of profitability within a few hours. For example if the algorithm leads the trio in an hour.
2. Display somewhere in the starting information window the start time of the program, and then have to fix it in manual for the calculation of profitability for the day.

yeh im going to have 2x :  start.bat

start1.bat   original profit switching based on realtime : stats (same as currently)

start2.bat   new profit switching based : on 1 hour or 24 average btc/perGHS price (new)

Best Regards
Nemo

p.s The -SelGPU option is done and tested working very well on my test rigs 1070's and 1080ti's
newbie
Activity: 5
Merit: 0
Hi Nemos !
1. add the choice of switching miner on the analysis of profitability within a few hours. For example if the algorithm leads the trio in an hour.
2. Display somewhere in the starting information window the start time of the program, and then have to fix it in manual for the calculation of profitability for the day.
newbie
Activity: 12
Merit: 0
NemosMiner-v2.1.ps1
    [Parameter(Mandatory=$false)]
    [Array]$SelGPU = $null,
    [Parameter(Mandatory=$false)]
    [String]$SelGPUString = "",
    [Parameter(Mandatory=$false)]
    [String]$SelGPUEWBF = "",
    [Parameter(Mandatory=$false)]
    [String]$SelGPUCC = "",
)

Set-Location (Split-Path $script:MyInvocation.MyCommand.Path)

Get-ChildItem . -Recurse | Unblock-File
try{if((Get-MpPreference).ExclusionPath -notcontains (Convert-Path .)){Start-Process powershell -Verb runAs -ArgumentList "Add-MpPreference -ExclusionPath '$(Convert-Path .)'"}}catch{}

if($SelGPU.Length -ne 0)
{
$SelGPUString = $SelGPU -join ","
$SelGPUCC = " -d $SelGPUString"
$SelGPUEWBF = " --cuda_devices $SelGPU"
}

Start.bat (with select 0,1,4)
"&.\NemosMiner-v2.1.ps1 -SelGPU 0,1,4 -Currency BTC ...
Start.bat (with select 0)
"&.\NemosMiner-v2.1.ps1 -SelGPU 0 -Currency BTC ...
Start.bat (all cuda device)
"&.\NemosMiner-v2.1.ps1 -Currency BTC

Work all Option.

ccminerAlexis78.ps1
    "blake2s" = "$SelGPUCC" #Blake2s

EWBF.ps1
    "equihash" = "$SelGPUEWBF" #Equihash
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
'Tuz77' ': )' 'thank you'
newbie
Activity: 12
Merit: 0
NemosMiner-v2.1.ps1
[Parameter(Mandatory=$false)]
[String]$SelGPUEWBF,
[Parameter(Mandatory=$false)]
[String]$SelGPUCC,

Start.bat (with select cuda device)
"&.\NemosMiner-v2.1.ps1 -SelGPUEWBF ' --cuda_devices 0 1 2 3' -SelGPUCC ' -d 0,1,2,3' -Currency BTC ...
Start.bat (all cuda device)
"&.\NemosMiner-v2.1.ps1 -Currency BTC

ccminerAlexis78.ps1
    "blake2s" = "$SelGPUCC" #Blake2s
newbie
Activity: 41
Merit: 0
but USD rate not working
i mean stats do nothing
newbie
Activity: 12
Merit: 0
NemosMiner-v2.1.ps1
[Parameter(Mandatory=$false)]
[String]$SelGPUEWBF = "0",
[Parameter(Mandatory=$false)]
[String]$SelGPUCC = "0",

Start.bat
-SelGPUEWBF '0' -SelGPUCC '0'
or
-SelGPUEWBF '0 1' -SelGPUCC '0,1'
or
-SelGPUEWBF '0 1 2' -SelGPUCC '0,1,2'
or
-SelGPUEWBF '0 1 2 3' -SelGPUCC '0,1,2,3'
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
15,000+ : )
legendary
Activity: 1901
Merit: 1024
That is the fate of algo switching mining, you can not rape shit coins with very low diff with 500-1000 GPU, or you can but then everyone lose, same could be sad for zpool conversion rate and hefty fee
hero member
Activity: 1274
Merit: 556
hashrefinery = 86 total miners
Zpool = 15,000 + total miners

and yet somehow hashrefinery is earning me more than zpool?

is it?
Anything seems to be earning us more than zpool currently Sad
hero member
Activity: 838
Merit: 500
My question about changing the intensity is still open if anyone can help me.

How does one max out the intensity on all the miners?
hero member
Activity: 838
Merit: 500
I have been using this that the dev based his work on nemosminer. Works pretty well for now.

https://github.com/Sniffdog/Sniffdogminer

Jump to: