7 lines
182 B
Bash
7 lines
182 B
Bash
#!/bin/bash
|
|
grep -oP '\[\d+/\d+\]' ~/pytorch-build-progress.log | tail -1
|
|
echo "---"
|
|
pgrep -c cc1plus 2>/dev/null || echo "0 compilers"
|
|
echo "compiler_procs"
|
|
free -m | grep Speicher
|