forked from pytorch/torchx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslurmtest.sh
executable file
·72 lines (58 loc) · 1.46 KB
/
slurmtest.sh
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
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
set -ex
REMOTE_WHEEL="$(realpath $1)"
VENV="$(realpath $2)"
BASE_DIR="$(dirname "$REMOTE_WHEEL")"
DIR="$BASE_DIR/project"
mkdir "$DIR"
cd "$DIR"
JOB_DIR="$BASE_DIR/job"
SLURM_SH=/opt/slurm/etc/slurm.sh
if [ -e $SLURM_SH ]
then
# shellcheck disable=SC1091
source $SLURM_SH
fi
sbatch --version
# shellcheck disable=SC1090
source "$VENV"/bin/activate
python --version
pip install "$REMOTE_WHEEL"
pip install numpy
pip install tabulate
pip install torch==1.10.2+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html
PARTITION="$(sinfo --format=%R --noheader | head -n 1)"
cat <<EOT > .torchxconfig
[slurm]
partition=$PARTITION
time=10
comment=hello
job_dir=$JOB_DIR
EOT
cat <<EOT > main.py
import sys
print("hello world!", file=sys.stderr)
EOT
APP_ID="$(torchx run --wait --log --scheduler slurm dist.ddp -j 2x1 --cpu 1 --max_retries 1 --script main.py)"
torchx status "$APP_ID"
torchx describe "$APP_ID"
sacct -j "$(basename "$APP_ID")"
torchx log "$APP_ID"
LINES="$(torchx log "$APP_ID" | grep -c 'hello world')"
if [ "$LINES" -ne 2 ]
then
echo "expected 2 log lines"
exit 1
fi
torchx list -s slurm
LIST_LINES="$(torchx list -s slurm | grep -c "$APP_ID")"
if [ "$LIST_LINES" -ne 1 ]
then
echo "expected $APP_ID to be listed"
exit 1
fi