Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/21/19 12:57:52 (5 years ago)
Author:
hmaislin
Message:

#2929: Added C and Go benchmark logs, fixed some MultiTest problems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2929_PrioritizedGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.PGE/3.3/MultiTest.ps1

    r16617 r16618  
    11[cmdletbinding()]
    22param(
    3     [int] $WaitToStep = 500,
     3    [int] $WaitToStep = 200,
    44    [int] $PeelCnt = 3,
    55    [int] $EvalCnt = 3,
    66    [ValidateSet("method1","method2", "method3")][string] $InitMethod = "method1",
    77    [ValidateSet("method1","method2", "method3")][string] $GrowMethod = "method1",
    8     [int] $MaxJobs = 10,
     8    [int] $MaxJobs = 3,
    99    [switch] $NoClear,
    1010    [switch] $UseExisting
     
    1212
    1313$BenchmarksPath = Resolve-Path -Relative "go-code\go-pge\data\benchmark"
     14
     15$env:GOGC="off"
     16$env:GODEBUG="cgocheck=0"
     17$env:CGO_ENABLED=1
    1418
    1519$BenchFiles = Get-ChildItem -Path $BenchmarksPath -File
     
    3135
    3236$ActiveJobs.Values | Wait-Job | Out-Null
    33 foreach($BenchName in $ActiveJobs.Keys) {
     37foreach($BenchName in $ActiveJobs.Keys | Sort-Object) {
    3438    $Job = $ActiveJobs[$BenchName]
    3539    $Res = $Job | Receive-Job
Note: See TracChangeset for help on using the changeset viewer.