← back to Exo
tes
6249bee793b7e2b14f0bb864b2ab264bae1f4c95 · 2024-12-11 22:35:30 +0000 · Alex Cheema
Files touched
M .github/workflows/bench_job.yml
Diff
commit 6249bee793b7e2b14f0bb864b2ab264bae1f4c95
Author: Alex Cheema <alexcheema123@gmail.com>
Date: Wed Dec 11 22:35:30 2024 +0000
tes
---
.github/workflows/bench_job.yml | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/.github/workflows/bench_job.yml b/.github/workflows/bench_job.yml
index fb56c83a..6fd76463 100644
--- a/.github/workflows/bench_job.yml
+++ b/.github/workflows/bench_job.yml
@@ -106,6 +106,10 @@ jobs:
source .venv/bin/activate
export PATH="/usr/local/bin:/opt/homebrew/bin:$PATH"
+ echo "=== Before starting exo ==="
+ ps -eo pid,ppid,user,%cpu,%mem,nice,state,policy,cls,pri,psr,command | head -1
+ ps -eo pid,ppid,user,%cpu,%mem,nice,state,policy,cls,pri,psr,command | grep -i python
+
echo "Starting exo daemon..."
# Start exo
@@ -120,6 +124,16 @@ jobs:
tail -f output1.log &
TAIL1=$!
+ # Give process time to start
+ sleep 2
+
+ echo "=== After starting exo ==="
+ ps -eo pid,ppid,user,%cpu,%mem,nice,state,policy,cls,pri,psr,command | head -1
+ ps -eo pid,ppid,user,%cpu,%mem,nice,state,policy,cls,pri,psr,command | grep $PID1
+
+ echo "Process details from sysctl:"
+ sudo sysctl -a | grep -i "kern.*.$PID1" || true
+
trap 'kill $TAIL1' EXIT
trap 'kill $PID1' EXIT
← 741c3183 test
·
back to Exo
·
t 225dcba7 →