Skip to content

Commit

Permalink
5.0b2
Browse files Browse the repository at this point in the history
  • Loading branch information
tutulino committed Dec 10, 2017
1 parent 9a3483c commit 1823eae
Show file tree
Hide file tree
Showing 44 changed files with 2,889 additions and 92 deletions.
3 changes: 2 additions & 1 deletion Config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@
@@STARTSCREEN=PROFITS

-- Gpu Groups, you can group your cards as you want, my recomendation is a group for each model of card on your rig. Each group will be bechmarking and running separately
-- You can identify your GPU platform and card id launching GpuList.bat
-- You can identify your GPUs id launching GpuList.bat. For NVIDIA, GPUPlatform is irrelevant, for AMD, try 0,1,2
-- If you change this groups you must delete stats folder content for becnchmark run again
-- Type must be NVIDIA or AMD
-- Example for rig with 5 nvidia identical cards @@GPUGROUPS=[{"GroupName" : "Rig1070","Type":"NVIDIA","GpuPlatform":"0","Gpus":"0,1,2,3,4"}]
-- Example for rig with 7 nvidia (5x1080,2x1060) @@GPUGROUPS=[{"GroupName" : "1080","Type":"NVIDIA","GpuPlatform":"0","Gpus":"0,1,2,3,4"} , {"GroupName" : "1060","Type":"NVIDIA","GpuPlatform":"0","Gpus":"5,6"} ]
-- For CPU Mining you must add a group with Type "CPU", example {"GroupName" : "CPU","Type":"CPU"}

@@GPUGROUPS=[{"GroupName" : "1080ti","Type":"NVIDIA","GpuPlatform":"0","Gpus":"0"} , {"GroupName" : "1060","Type":"NVIDIA","GpuPlatform":"0","Gpus":"1"} ]

Expand Down
20 changes: 19 additions & 1 deletion GPUList.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@

Add-Type -Path .\OpenCL\*.cs


$OCLPlatforms = @()
$counter=0

[OpenCl.Platform]::GetPlatformIDs() | ForEach-Object {
$OCLPlatforms+=[pscustomobject]@{
PlatformId=$counter
Name=$_.Name
Vendor=$_.vendor
}
$counter++
}


$OCLPlatforms | out-host

<#
#Get GPUPlatforms
$GpuPlatforms=@()
Expand All @@ -19,7 +37,7 @@ $counter=0
$GpuPlatforms | Out-Host
<#
#Get SMI info for nvidia cards
$NvidiaCards=@()
Expand Down
36 changes: 29 additions & 7 deletions Include.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ function Get-Live-HashRate {
[Int]$Port,
[Parameter(Mandatory = $false)]
[Object]$Parameters = @{}
#[Parameter(Mandatory = $false)]
#[Bool]$Safe = $false

)

$Server = "localhost"
Expand Down Expand Up @@ -193,29 +192,52 @@ function Get-Live-HashRate {
if ($HashRate -eq "") {$HashRate = $Data[3]}


}
}
"wrapper" {
$HashRate = ""
$HashRate = Get-Content ".\Wrapper_$Port.txt"
$HashRate = $HashRate -replace ',','.'
}

"castXMR" {
$Request = Invoke-WebRequest "http://$($Server):$Port" -UseBasicParsing

$Data = $Request | ConvertFrom-Json
$HashRate = [Double]($Data.devices.hash_rate | Measure-Object -Sum).Sum / 1000

}
}
}

"XMrig" {
$Request = Invoke-WebRequest "http://$($Server):$Port/api.json" -UseBasicParsing

$Data = $Request | ConvertFrom-Json
$HashRate = [Double]$Data.hashrate.total[0]

}

}

$HashRates=@()
$HashRates += [double]$HashRate
$HashRates += [double]$HashRate_Dual

$HashRates
}
catch {
}
catch {}
}













#************************************************************************************************************************************************************************************
#************************************************************************************************************************************************************************************
#************************************************************************************************************************************************************************************
Expand Down
27 changes: 27 additions & 0 deletions Miners/CPU-Jay4way.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"Path" : ".\\Bin\\cpuminer-opt-3.7.5-windows\\cpuminer-4way.exe",
"ExtractionPath" : ".\\Bin\\",
"Uri" : "https://github.com/JayDDee/cpuminer-opt/files/1543780/cpuminer-opt-3.7.5-windows.zip",
"Types" : ["CPU"],
"Arguments" : "-o #PROTOCOL#://#SERVER#:#PORT# -u #LOGIN# -p #PASSWORD# -R 10 -r 4 -b #APIPORT# #ALGORITHMPARAMETERS#",
"API" : "ccminer",
"Wrap" : false,
"Dualmining":false,
"PrelaunchCommand":"",
"Algorithms": [
{"cryptonight":"-a cryptonight"},
{"lyra2z":"-a lyra2z"},
{"hmq1725":"-a hmq1725"},
{"nist5":"-a nist5"},
{"jha":"-a jha"},
{"bitcore":"-a bitcore"},
{"keccak":"-a keccak"},
{"keccakc":"-a keccakc"}
]

}





27 changes: 27 additions & 0 deletions Miners/CPU-JayAvx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"Path" : ".\\Bin\\cpuminer-opt-3.7.5-windows\\cpuminer-aes-avx.exe",
"ExtractionPath" : ".\\Bin\\",
"Uri" : "https://github.com/JayDDee/cpuminer-opt/files/1543780/cpuminer-opt-3.7.5-windows.zip",
"Types" : ["CPU"],
"Arguments" : "-o #PROTOCOL#://#SERVER#:#PORT# -u #LOGIN# -p #PASSWORD# -R 10 -r 4 -b #APIPORT# #ALGORITHMPARAMETERS#",
"API" : "ccminer",
"Wrap" : false,
"Dualmining":false,
"PrelaunchCommand":"",
"Algorithms": [
{"cryptonight":"-a cryptonight"},
{"lyra2z":"-a lyra2z"},
{"hmq1725":"-a hmq1725"},
{"nist5":"-a nist5"},
{"jha":"-a jha"},
{"bitcore":"-a bitcore"},
{"keccak":"-a keccak"},
{"keccakc":"-a keccakc"}
]

}





27 changes: 27 additions & 0 deletions Miners/CPU-JayAvx2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"Path" : ".\\Bin\\cpuminer-opt-3.7.5-windows\\cpuminer-aes-avx2.exe",
"ExtractionPath" : ".\\Bin\\",
"Uri" : "https://github.com/JayDDee/cpuminer-opt/files/1543780/cpuminer-opt-3.7.5-windows.zip",
"Types" : ["CPU"],
"Arguments" : "-o #PROTOCOL#://#SERVER#:#PORT# -u #LOGIN# -p #PASSWORD# -R 10 -r 4 -b #APIPORT# #ALGORITHMPARAMETERS#",
"API" : "ccminer",
"Wrap" : false,
"Dualmining":false,
"PrelaunchCommand":"",
"Algorithms": [
{"cryptonight":"-a cryptonight"},
{"lyra2z":"-a lyra2z"},
{"hmq1725":"-a hmq1725"},
{"nist5":"-a nist5"},
{"jha":"-a jha"},
{"bitcore":"-a bitcore"},
{"keccak":"-a keccak"},
{"keccakc":"-a keccakc"}
]

}





27 changes: 27 additions & 0 deletions Miners/CPU-JaySse2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"Path" : ".\\Bin\\cpuminer-opt-3.7.5-windows\\cpuminer-sse2.exe",
"ExtractionPath" : ".\\Bin\\",
"Uri" : "https://github.com/JayDDee/cpuminer-opt/files/1543780/cpuminer-opt-3.7.5-windows.zip",
"Types" : ["CPU"],
"Arguments" : "-o #PROTOCOL#://#SERVER#:#PORT# -u #LOGIN# -p #PASSWORD# -R 10 -r 4 -b #APIPORT# #ALGORITHMPARAMETERS#",
"API" : "ccminer",
"Wrap" : false,
"Dualmining":false,
"PrelaunchCommand":"",
"Algorithms": [
{"cryptonight":"-a cryptonight"},
{"lyra2z":"-a lyra2z"},
{"hmq1725":"-a hmq1725"},
{"nist5":"-a nist5"},
{"jha":"-a jha"},
{"bitcore":"-a bitcore"},
{"keccak":"-a keccak"},
{"keccakc":"-a keccakc"}
]

}





17 changes: 17 additions & 0 deletions Miners/CPU-XMrig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"Path" : ".\\Bin\\CPU-XMRIG\\xmrig.exe",
"ExtractionPath" : ".\\Bin\\CPU-XMRIG\\",
"Uri" : "https://github.com/xmrig/xmrig/releases/download/v2.4.3/xmrig-2.4.3-gcc-win32.zip",
"Types" : ["CPU"],
"Arguments" : "-o #PROTOCOL#://#SERVER#:#PORT# -u #LOGIN# -p #PASSWORD# --api-port #APIPORT# --donate-level 1 #ALGORITHMPARAMETERS#",
"API" : "XMRig",
"Wrap" : false,
"Dualmining":false,
"PrelaunchCommand":"",
"Fee" : 0.01,
"Algorithms": [
{"CRYPTONIGHT":""}
]

}

18 changes: 18 additions & 0 deletions Miners/CastXMRvega.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"Path" : ".\\Bin\\AMD-CastXMRVega\\cast_xmr-vega.exe",
"ExtractionPath" : ".\\Bin\\AMD-CastXMRVega\\",
"Uri" : "http://www.gandalph3000.com/download/cast_xmr-vega-win64_070.zip",
"Types" : ["AMD"],
"Arguments" : "--remoteaccess -S #PROTOCOL#://#SERVER#:#PORT# -u #LOGIN# -p #PASSWORD# --device #DEVICES# --api-port #APIPORT# --opencl #GPUPLATFORM# #ALGORITHMPARAMETERS#",
"API" : "castXMR",
"Wrap" : false,
"Dualmining":false,
"PrelaunchCommand":"",
"Algorithms": [
{"CryptoNight ":""}
]

}



25 changes: 25 additions & 0 deletions Miners/CcminerPolytmos.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"Path" : ".\\Bin\\NVIDIA-ccminerpolytimos\\ccminer.exe",
"ExtractionPath" : ".\\Bin\\NVIDIA-ccminerpolytimos\\",
"Uri" : "https://github.com/nemosminer/ccminerpolytimos/releases/download/Alexis78-1.0/ccminer-polytimos.7z",
"Types" : ["NVIDIA"],
"Arguments" : "-o #PROTOCOL#://#SERVER#:#PORT# -u #LOGIN# -p #PASSWORD# -R 10 -r 4 -b #APIPORT# -d #DEVICES# #ALGORITHMPARAMETERS# ",
"API" : "Ccminer",
"APIPort" : 4068,
"Wrap" : false,
"Dualmining":false,
"PrelaunchCommand":"",
"Algorithms": [
{"polytimos" : "-a poly"},
{"blake2s":"-a blake2s"},
{"blakecoin":"-a blakecoin"},
{"Keccak":"-a keccak"},
{"lbry":"-a lbry"},
{"lyra2v2":"-a lyra2v2"},
{"Myriad-Groestl" : "-a myr-gr"},
{"polytimos": "-a polytimos"},
{"skein" : "-a skein"},
{"veltor":"-a veltor"},
{"nist5" : "-a nist5" }
]
}
3 changes: 2 additions & 1 deletion Miners/CcminerTpruvot.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
{"whirpool":"-a whirl"},
{"phi":"-a phi"},
{"polytimos": "-a polytimos"},
{"cryptonight":"-a cryptonight"}
{"cryptonight":"-a cryptonight"},
{"keccakc":"-a keccakc"}

]

Expand Down
18 changes: 18 additions & 0 deletions Miners/ClaymoreCrypto97.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"Path" : ".\\Bin\\Claymore CryptoNote\\NsGpuCNMiner.exe",
"ExtractionPath" : ".\\Bin\\Claymore CryptoNote",
"Uri" : "https://github.com/tutulino/Claymore-Dual/releases/download/10.0/Claymore.CryptoNote.GPU.Miner.v9.7.Beta.-.POOL.rar",
"Types" : ["AMD"],
"Arguments" : "-xpool stratum+tcp://#SERVER#:#PORT# -xwal #LOGIN# -xpsw #PASSWORD# -allpools 1 -di #DEVICESCLAYMODE# -mport #APIPORT# #ALGORITHMPARAMETERS#",
"API" : "ClaymoreV2",
"Fee" : "0.01",
"Wrap" : false,
"DualMining": false,
"PrelaunchCommand":"",
"Algorithms": [
{"Cryptonight":""}
]

}


2 changes: 1 addition & 1 deletion Miners/Dtsm.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"ExtractionPath": ".\\Bin\\",
"Uri": "https://github.com/tutulino/Claymore-Dual/releases/download/10.0/zm_0.5.6_win.zip",
"Types": ["NVIDIA"],
"Arguments": "--server #SERVER# --port #PORT# --user #LOGIN# --pass #PASSWORD# --dev #DEVICES# --telemetry=127.0.0.1:#APIPORT# #ALGORITHMPARAMETERS# ",
"Arguments": "--server #SERVER# --port #PORT# --user #LOGIN# --pass #PASSWORD# --dev #DEVICESETHMODE# --telemetry=127.0.0.1:#APIPORT# #ALGORITHMPARAMETERS# ",
"API": "DTSM",
"Wrap": false,
"Dualmining":false,
Expand Down
2 changes: 1 addition & 1 deletion Miners/EWBF.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"ExtractionPath": ".\\Bin\\NVIDIA-EWBF\\",
"Uri": "https://github.com/nemosminer/EWBF-Zec-Miner/releases/download/0.3.4b/0.3.4b.7z",
"Types": ["NVIDIA"],
"Arguments": "--api --server #SERVER# --port #PORT# --solver 0 --pec --fee 0 --eexit 1 --user #LOGIN# --pass #PASSWORD# --cuda_devices #DEVICES# --api 127.0.0.1:#APIPORT# #ALGORITHMPARAMETERS# ",
"Arguments": "--api --server #SERVER# --port #PORT# --solver 0 --pec --fee 0 --eexit 1 --user #LOGIN# --pass #PASSWORD# --cuda_devices #DEVICESETHMODE# --api 127.0.0.1:#APIPORT# #ALGORITHMPARAMETERS# ",
"API": "EWBF",
"Wrap": false,
"Dualmining":false,
Expand Down
19 changes: 19 additions & 0 deletions Miners/ccminer-2.2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"Path" : ".\\Bin\\NVIDIA-ccminer-2.2\\ccminer-x64.exe",
"ExtractionPath" : ".\\Bin\\NVIDIA-ccminer-2.2\\",
"Uri" : "http://ccminer.org/preview/ccminer-2.2-skunk.7z",
"Types" : ["NVIDIA"],
"Arguments" : "-o #PROTOCOL#://#SERVER#:#PORT# -u #LOGIN# -p #PASSWORD# -R 10 -r 4 -b #APIPORT# -d #DEVICES# #ALGORITHMPARAMETERS# ",
"API" : "Ccminer",
"Wrap" : false,
"Dualmining":false,
"PrelaunchCommand":"",
"Algorithms": [
{"cryptonight":"-a cryptonight"},
{"bitcore":"-a bitcore"},
{"timetravel":"-a timetravel"}


]

}
5 changes: 4 additions & 1 deletion Miners/ccminerAlexis.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
{"skein" : "-a skein"},
{"x14" : "-a x14" },
{"x11evo" : "-a x11evo"},
{"x17" : "-a x17" }
{"x17" : "-a x17" },
{"nist5" : "-a nist5" },
{"blakecoin" : "-a blakecoin" }


]

Expand Down
Loading

0 comments on commit 1823eae

Please sign in to comment.