forked from violetljj/blind-assist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonitor_host_research_process.ps1
More file actions
529 lines (498 loc) · 16 KB
/
Copy pathmonitor_host_research_process.ps1
File metadata and controls
529 lines (498 loc) · 16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
[ValidateRange(1, 2147483647)]
[int]$ProcessId,
[Parameter(Mandatory = $true)]
[string]$EvidenceDirectory,
[string]$AttemptBaseName = "formal_run_r0",
[string]$ClaimPath = "",
[string]$SuccessPath = "",
[string]$FailurePath = "",
[string]$ProgressPath = "",
[string]$MonitorDirectory = (
"artifacts.local\evidence\host_process_monitors"
),
[ValidateRange(1, 3600)]
[int]$PollSeconds = 30,
[ValidateRange(2, 100)]
[int]$StallWindows = 3,
[ValidateRange(0, 1000000)]
[int]$MaxSamples = 0
)
Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
function Get-Phase {
param(
[bool]$ProcessExists,
[string]$EvidencePath,
[string]$BaseName,
[string]$ObservedClaim,
[string]$ObservedSuccess,
[string]$ObservedFailure,
[string]$RunnerPhase
)
if (Test-Path -LiteralPath $ObservedSuccess) {
return "complete"
}
if (Test-Path -LiteralPath $ObservedFailure) {
return "failed"
}
$temporary = Get-ChildItem `
-LiteralPath $EvidencePath `
-Directory `
-Force `
-ErrorAction SilentlyContinue |
Where-Object { $_.Name -like ".$BaseName.*.tmp" } |
Select-Object -First 1
if ($null -ne $temporary) {
return "validator_or_finalization"
}
if (-not $ProcessExists) {
return "exited_without_receipt"
}
if (-not [string]::IsNullOrWhiteSpace($RunnerPhase)) {
return "runner_$RunnerPhase"
}
if (Test-Path -LiteralPath $ObservedClaim) {
return "producer"
}
return "pre_claim"
}
function Get-RunnerProgressValue {
param(
[object]$Progress,
[string]$Name
)
if ($null -eq $Progress) {
return $null
}
$property = $Progress.PSObject.Properties[$Name]
if ($null -eq $property) {
return $null
}
return $property.Value
}
function Get-ProcessTreeSnapshot {
param(
[int]$RootProcessId
)
$allProcesses = @(
Get-CimInstance `
-ClassName Win32_Process `
-ErrorAction SilentlyContinue
)
$byProcessId = @{}
$childrenByParent = @{}
foreach ($item in $allProcesses) {
$itemProcessId = [int]$item.ProcessId
$parentProcessId = [int]$item.ParentProcessId
$byProcessId[$itemProcessId] = $item
if (-not $childrenByParent.ContainsKey($parentProcessId)) {
$childrenByParent[$parentProcessId] = [Collections.Generic.List[int]]::new()
}
$childrenByParent[$parentProcessId].Add($itemProcessId)
}
if (-not $byProcessId.ContainsKey($RootProcessId)) {
return @()
}
$pending = [Collections.Generic.Queue[int]]::new()
$pending.Enqueue($RootProcessId)
$visited = [Collections.Generic.HashSet[int]]::new()
$result = [Collections.Generic.List[object]]::new()
while ($pending.Count -gt 0) {
$currentProcessId = $pending.Dequeue()
if (-not $visited.Add($currentProcessId)) {
continue
}
if (-not $byProcessId.ContainsKey($currentProcessId)) {
continue
}
$result.Add($byProcessId[$currentProcessId])
if ($childrenByParent.ContainsKey($currentProcessId)) {
foreach ($childProcessId in $childrenByParent[$currentProcessId]) {
$pending.Enqueue($childProcessId)
}
}
}
return @($result)
}
function Get-NvidiaGpuSnapshot {
$empty = [ordered]@{
gpu_utilization_percent = $null
gpu_memory_used_mib = $null
gpu_temperature_c = $null
gpu_power_draw_w = $null
}
$nvidiaSmi = Get-Command nvidia-smi -ErrorAction SilentlyContinue
if ($null -eq $nvidiaSmi) {
return [pscustomobject]$empty
}
try {
$output = @(& $nvidiaSmi.Source `
--query-gpu=utilization.gpu,memory.used,temperature.gpu,power.draw `
--format=csv,noheader,nounits `
2>$null)
$nativeExitCode = $LASTEXITCODE
$line = $output | Select-Object -First 1
if (
($null -ne $nativeExitCode -and $nativeExitCode -ne 0) -or
[string]::IsNullOrWhiteSpace($line)
) {
return [pscustomobject]$empty
}
$values = @([string]$line -split ",")
if ($values.Count -ne 4) {
return [pscustomobject]$empty
}
$parsed = @()
foreach ($value in $values) {
$number = 0.0
$ok = [double]::TryParse(
$value.Trim(),
[Globalization.NumberStyles]::Float,
[Globalization.CultureInfo]::InvariantCulture,
[ref]$number
)
if (-not $ok) {
return [pscustomobject]$empty
}
$parsed += $number
}
return [pscustomobject][ordered]@{
gpu_utilization_percent = $parsed[0]
gpu_memory_used_mib = $parsed[1]
gpu_temperature_c = $parsed[2]
gpu_power_draw_w = $parsed[3]
}
} catch {
return [pscustomobject]$empty
}
}
$resolvedEvidence = [IO.Path]::GetFullPath(
(Join-Path (Get-Location) $EvidenceDirectory)
)
$resolvedClaim = if ([string]::IsNullOrWhiteSpace($ClaimPath)) {
Join-Path $resolvedEvidence "$AttemptBaseName.claim.json"
} else {
[IO.Path]::GetFullPath((Join-Path (Get-Location) $ClaimPath))
}
$resolvedSuccess = if ([string]::IsNullOrWhiteSpace($SuccessPath)) {
Join-Path $resolvedEvidence $AttemptBaseName
} else {
[IO.Path]::GetFullPath((Join-Path (Get-Location) $SuccessPath))
}
$resolvedFailure = if ([string]::IsNullOrWhiteSpace($FailurePath)) {
Join-Path $resolvedEvidence "$AttemptBaseName.failure.json"
} else {
[IO.Path]::GetFullPath((Join-Path (Get-Location) $FailurePath))
}
$resolvedProgress = if ([string]::IsNullOrWhiteSpace($ProgressPath)) {
""
} else {
[IO.Path]::GetFullPath((Join-Path (Get-Location) $ProgressPath))
}
$resolvedMonitor = [IO.Path]::GetFullPath(
(Join-Path (Get-Location) $MonitorDirectory)
)
$attemptDirectory = Join-Path $resolvedMonitor (
"{0}-pid-{1}" -f $AttemptBaseName, $ProcessId
)
New-Item -ItemType Directory -Path $attemptDirectory -Force |
Out-Null
$historyPath = Join-Path $attemptDirectory "monitor.jsonl"
$latestPath = Join-Path $attemptDirectory "status.latest.json"
$previous = $null
$silentWindows = 0
$sampleCount = 0
while ($true) {
$now = Get-Date
$processTree = @(Get-ProcessTreeSnapshot -RootProcessId $ProcessId)
$exists = $processTree.Count -gt 0
$childCount = [Math]::Max(0, $processTree.Count - 1)
$runnerProgress = $null
if (
-not [string]::IsNullOrWhiteSpace($resolvedProgress) -and
(Test-Path -LiteralPath $resolvedProgress -PathType Leaf)
) {
try {
$runnerProgress = Get-Content `
-LiteralPath $resolvedProgress `
-Raw `
-Encoding UTF8 |
ConvertFrom-Json
} catch {
$runnerProgress = $null
}
}
$runnerPhaseValue = Get-RunnerProgressValue `
-Progress $runnerProgress `
-Name "phase"
$runnerPhase = if ($null -ne $runnerPhaseValue) {
[string]$runnerPhaseValue
} else {
""
}
$phase = Get-Phase `
-ProcessExists $exists `
-EvidencePath $resolvedEvidence `
-BaseName $AttemptBaseName `
-ObservedClaim $resolvedClaim `
-ObservedSuccess $resolvedSuccess `
-ObservedFailure $resolvedFailure `
-RunnerPhase $runnerPhase
$cpuSeconds = $null
$readBytes = $null
$writeBytes = $null
$privateBytes = $null
if ($exists) {
$cpuSeconds = 0.0
$readBytes = 0.0
$writeBytes = 0.0
$privateBytes = 0.0
foreach ($process in $processTree) {
$cpuSeconds += (
[double]$process.KernelModeTime +
[double]$process.UserModeTime
) / 1e7
$readBytes += [double]$process.ReadTransferCount
$writeBytes += [double]$process.WriteTransferCount
$privateBytes += [double]$process.PrivatePageCount
}
}
$gpu = Get-NvidiaGpuSnapshot
$wallSeconds = $null
$cpuCoreEquivalent = $null
$readMiBPerSecond = $null
$writeMiBPerSecond = $null
$completedValue = Get-RunnerProgressValue `
-Progress $runnerProgress `
-Name "completed_units"
$totalValue = Get-RunnerProgressValue `
-Progress $runnerProgress `
-Name "total_units"
$completedUnits = if ($null -ne $completedValue) {
[double]$completedValue
} else {
$null
}
$totalUnits = if ($null -ne $totalValue) {
[double]$totalValue
} else {
$null
}
$unitProgressed = (
$null -ne $completedUnits -and
$null -ne $previous -and
$null -ne $previous.completed_units -and
$completedUnits -gt [double]$previous.completed_units
)
if ($exists -and $null -ne $previous) {
$wallSeconds = (
$now - [datetime]$previous.timestamp
).TotalSeconds
if ($wallSeconds -gt 0) {
$cpuCoreEquivalent = [Math]::Max(
0.0,
($cpuSeconds - [double]$previous.cpu_seconds) /
$wallSeconds
)
$readMiBPerSecond = [Math]::Max(
0.0,
($readBytes - [double]$previous.read_bytes) /
1MB /
$wallSeconds
)
$writeMiBPerSecond = [Math]::Max(
0.0,
($writeBytes - [double]$previous.write_bytes) /
1MB /
$wallSeconds
)
}
}
$health = if (-not $exists) {
"not_running"
} elseif ($null -eq $previous) {
"sampling"
} elseif (
$unitProgressed -or
$cpuCoreEquivalent -ge 0.05 -or
$readMiBPerSecond -ge 1.0 -or
$writeMiBPerSecond -ge 1.0
) {
$silentWindows = 0
"running_progress"
} else {
$silentWindows += 1
if ($silentWindows -ge $StallWindows) {
"possible_stall"
} else {
"low_activity"
}
}
$bottleneckHint = "insufficient_sample"
$actionHint = "Collect another telemetry window."
if ($phase -in @("complete", "failed", "exited_without_receipt")) {
$bottleneckHint = "terminal"
$actionHint = "Inspect the canonical output or failure state."
} elseif ($health -eq "possible_stall") {
$bottleneckHint = "possible_stall"
$actionHint = (
"Inspect the process stack and dependencies; do not restart an " +
"irreversible formal attempt without protocol authority."
)
} elseif ($null -ne $cpuCoreEquivalent) {
if (
$cpuCoreEquivalent -le 1.2 -and
$readMiBPerSecond -ge 100.0
) {
$bottleneckHint = "serial_archive_or_decode_io"
$actionHint = (
"For the next implementation revision, materialize a " +
"hash-bound cache before the formal claim, then benchmark " +
"ordered parallel workers."
)
} elseif (
$cpuCoreEquivalent -ge 0.7 -and
$cpuCoreEquivalent -le 1.2 -and
$readMiBPerSecond -lt 10.0
) {
$bottleneckHint = "serial_cpu"
$actionHint = (
"Profile Python loops and native calls; vectorize or use an " +
"ordered process pool in the next implementation revision."
)
} elseif ($cpuCoreEquivalent -gt 1.2) {
$bottleneckHint = "parallel_cpu"
$actionHint = (
"Compare throughput scaling and memory headroom with the " +
"host research worker profiles."
)
} elseif (
$readMiBPerSecond -ge 100.0 -and
$cpuCoreEquivalent -lt 0.7
) {
$bottleneckHint = "io_heavy"
$actionHint = (
"Reduce repeated reads and benchmark bounded I/O concurrency."
)
} elseif ($health -eq "running_progress") {
$bottleneckHint = "active_mixed_or_low_parallelism"
$actionHint = (
"Use a bounded pilot and profiler before choosing CPU, GPU, " +
"or I/O concurrency."
)
}
}
$record = [ordered]@{
schema_version = "blindassist.host_process_monitor.v1"
timestamp = $now.ToUniversalTime().ToString("o")
process_id = $ProcessId
process_exists = $exists
child_count = $childCount
phase = $phase
health = $health
cpu_seconds = if ($null -eq $cpuSeconds) {
$null
} else {
[Math]::Round($cpuSeconds, 3)
}
cpu_core_equivalent = if ($null -eq $cpuCoreEquivalent) {
$null
} else {
[Math]::Round($cpuCoreEquivalent, 3)
}
read_gib_total = if ($null -eq $readBytes) {
$null
} else {
[Math]::Round($readBytes / 1GB, 3)
}
read_mib_per_second = if ($null -eq $readMiBPerSecond) {
$null
} else {
[Math]::Round($readMiBPerSecond, 3)
}
write_mib_per_second = if ($null -eq $writeMiBPerSecond) {
$null
} else {
[Math]::Round($writeMiBPerSecond, 3)
}
private_memory_mib = if ($null -eq $privateBytes) {
$null
} else {
[Math]::Round($privateBytes / 1MB, 1)
}
gpu_utilization_percent = $gpu.gpu_utilization_percent
gpu_memory_used_mib = $gpu.gpu_memory_used_mib
gpu_temperature_c = $gpu.gpu_temperature_c
gpu_power_draw_w = $gpu.gpu_power_draw_w
consecutive_low_activity_windows = $silentWindows
bottleneck_hint = $bottleneckHint
action_hint = $actionHint
completed_units = $completedUnits
total_units = $totalUnits
progress_fraction = if (
$null -ne $completedUnits -and
$null -ne $totalUnits -and
$totalUnits -gt 0
) {
[Math]::Round($completedUnits / $totalUnits, 6)
} else {
$null
}
throughput = Get-RunnerProgressValue `
-Progress $runnerProgress `
-Name "throughput"
eta_seconds = Get-RunnerProgressValue `
-Progress $runnerProgress `
-Name "eta_seconds"
last_progress_at = Get-RunnerProgressValue `
-Progress $runnerProgress `
-Name "last_progress_at"
progress_note = if ($null -ne $runnerProgress) {
"Runner-published progress is available."
} else {
(
"Exact progress and ETA are unavailable because the observed " +
"runner does not publish completed/total units."
)
}
evidence_directory = $resolvedEvidence
}
$json = $record | ConvertTo-Json -Compress
Add-Content -LiteralPath $historyPath -Value $json -Encoding UTF8
$latestTemporary = "$latestPath.$PID.tmp"
Set-Content `
-LiteralPath $latestTemporary `
-Value ($record | ConvertTo-Json) `
-Encoding UTF8
Move-Item `
-LiteralPath $latestTemporary `
-Destination $latestPath `
-Force
Write-Output $json
$sampleCount += 1
if (
$phase -in @(
"complete",
"failed",
"exited_without_receipt"
) -or
($MaxSamples -gt 0 -and $sampleCount -ge $MaxSamples)
) {
break
}
if ($exists) {
$previous = [pscustomobject]@{
timestamp = $now
cpu_seconds = $cpuSeconds
read_bytes = $readBytes
write_bytes = $writeBytes
completed_units = $completedUnits
}
} else {
$previous = $null
}
Start-Sleep -Seconds $PollSeconds
}