Post
Topic
Board Mining (Altcoins)
Re: NEMOSMINER multi algo profit switching NVIDIA miner
by
minerx117
on 17/08/2017, 05:44:50 UTC
Quote from: minerx117
if you don't have anything to useful to contribute ...
Change the code in github:

NemosMiner-v2.1.ps1
    [Parameter(Mandatory=$false)]
    [Array]$SelGPU = $null, # sample 0..3
    [Parameter(Mandatory=$false)]
    [String]$SelGPUEWBF = "",
    [Parameter(Mandatory=$false)]
    [String]$SelGPUCC = "",
)

  if($SelGPU.Length -ne 0) # Array length test, if not null
   {
     $SelGPUCC = $SelGPU -join "," # "0,1,2,3", If you transfer an array to a string using the $SelGPUCC = $SelGPU will "0 1 2 3"
     $SelGPUCC = " -d $SelGPUCC" # " -d 0,1,2,3"
     $SelGPUEWBF = " --cuda_devices $SelGPU" # " --cuda_devices 0 1 2 3"
    }

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 (code sample)
"neoscrypt" = "$SelGPUCC -i 15" #NeoScrypt

EWBF.ps1 (code sample)
    "equihash" = "$SelGPUEWBF" #Equihash

thanks on 2 it