summaryrefslogtreecommitdiff
path: root/diag/run_ff.sh
diff options
context:
space:
mode:
authorYurenHao0426 <Blackhao0426@gmail.com>2026-06-17 11:19:27 -0500
committerYurenHao0426 <Blackhao0426@gmail.com>2026-06-17 11:19:27 -0500
commitd12722525fc010a3910b5152c72654a2ade5eac4 (patch)
treeadbfd19bef487e1c959856d9bf7f881709684a7e /diag/run_ff.sh
Initial import
Diffstat (limited to 'diag/run_ff.sh')
-rw-r--r--diag/run_ff.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/diag/run_ff.sh b/diag/run_ff.sh
new file mode 100644
index 0000000..e2b7b0a
--- /dev/null
+++ b/diag/run_ff.sh
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+set -uo pipefail
+cd /home/yurenh2/rrog; export PYTHONPATH=/home/yurenh2/rrog
+echo "FF start gpu=${CUDA_VISIBLE_DEVICES:-?} $(date -Is)"
+for conv in gcn gat; do for L in 4 8 16; do for s in 0 1 2; do
+ python3 diag/ff_color.py --conv "$conv" --L "$L" --seed "$s" || echo "!! ff $conv L$L s$s"
+done; done; done
+echo "doneFF=$(date -Is)"