We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99fd4c2 commit fcee17fCopy full SHA for fcee17f
.github/workflows/phoenix/bench.sh
@@ -2,7 +2,14 @@
2
3
n_ranks=12
4
5
-export TMPDIR=/storage/home/hcoda1/6/sbryngelson3/scratch/runner-tmp
+rand=""
6
+for i in {1..10}; do
7
+ rand="${rand}$((RANDOM % 10))"
8
+done
9
+TMPDIR=/tmp/$rand
10
+mkdir $TMPDIR
11
+chmod 777 $TMPDIR
12
+export TMPDIR=$TMPDIR
13
14
if [ "$job_device" == "gpu" ]; then
15
n_ranks=$(nvidia-smi -L | wc -l) # number of GPUs on node
0 commit comments