Skip to content

Commit

Permalink
update ze to 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Quake4 committed Oct 7, 2019
1 parent 70ab57f commit dec5585
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Miners/ccminer-ze-22.ps1 → Miners/ccminer-ze-23.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ $Cfg = ReadOrCreateMinerConfig "Do you want use to mine the '$Name' miner" ([IO.
[AlgoInfoEx]@{ Enabled = $true; Algorithm = "vit" }
[AlgoInfoEx]@{ Enabled = $false; Algorithm = "x16r"; BenchmarkSeconds = 120 } # t-rex faster
[AlgoInfoEx]@{ Enabled = $false; Algorithm = "x16r"; BenchmarkSeconds = 120; ExtraArgs="-i 22" } # t-rex faster
[AlgoInfoEx]@{ Enabled = $false; Algorithm = "x16rv2"; BenchmarkSeconds = 120 } # t-rex faster
[AlgoInfoEx]@{ Enabled = $false; Algorithm = "x16rv2"; BenchmarkSeconds = 120; ExtraArgs="-i 22" }
[AlgoInfoEx]@{ Enabled = $true; Algorithm = "x16rv2"; BenchmarkSeconds = 120 } # t-rex faster
[AlgoInfoEx]@{ Enabled = $true; Algorithm = "x16rv2"; BenchmarkSeconds = 120; ExtraArgs="-i 22" }
[AlgoInfoEx]@{ Enabled = $false; Algorithm = "x16s"; BenchmarkSeconds = 120 } # t-rex faster
[AlgoInfoEx]@{ Enabled = $false; Algorithm = "x17"; BenchmarkSeconds = 120 } # t-rex faster
[AlgoInfoEx]@{ Enabled = $true; Algorithm = "xevan"; BenchmarkSeconds = 120 }
Expand All @@ -42,10 +42,10 @@ $Cfg = ReadOrCreateMinerConfig "Do you want use to mine the '$Name' miner" ([IO.
if (!$Cfg.Enabled) { return }

switch ([Config]::CudaVersion) {
{ $_ -ge [version]::new(10, 1) } { $url = "http://mindminer.online/miners/nVidia/z-enemy-2.2-cuda10.1.zip" }
([version]::new(10, 0)) { $url = "http://mindminer.online/miners/nVidia/z-enemy-2.2-cuda10.0.zip" }
([version]::new(9, 2)) { $url = "http://mindminer.online/miners/nVidia/z-enemy-2.2-cuda9.2.zip" }
default { $url = "http://mindminer.online/miners/nVidia/z-enemy-2.2-cuda9.1.zip" }
{ $_ -ge [version]::new(10, 1) } { $url = "http://mindminer.online/miners/nVidia/z-enemy-2.3-cuda10.1.zip" }
([version]::new(10, 0)) { $url = "http://mindminer.online/miners/nVidia/z-enemy-2.3-cuda10.0.zip" }
([version]::new(9, 2)) { $url = "http://mindminer.online/miners/nVidia/z-enemy-2.3-cuda9.2.zip" }
default { $url = "http://mindminer.online/miners/nVidia/z-enemy-2.3-cuda9.1.zip" }
}

$Cfg.Algorithms | ForEach-Object {
Expand Down

0 comments on commit dec5585

Please sign in to comment.