1 parent f4b34c4 commit 791d88aCopy full SHA for 791d88a
1 file changed
.github/scripts/allocator_bench_windows.ps1
@@ -29,7 +29,7 @@ function Run-One([string]$allocator, [string]$features) {
29
$p = Get-Process -Id $proc.Id -ErrorAction Stop
30
$current = [math]::Max($p.WorkingSet64, $p.PeakWorkingSet64)
31
if ($current -gt $peak) { $peak = $current }
32
-
+
33
$wmi = Get-CimInstance Win32_Process -Filter "ProcessId=$($proc.Id)" -ErrorAction SilentlyContinue
34
if ($wmi -and $wmi.PageFaults -gt $faults) { $faults = $wmi.PageFaults }
35
} catch { }
0 commit comments