forked from espnet/espnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_s3prl.sh
executable file
·56 lines (43 loc) · 992 Bytes
/
install_s3prl.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
#!/usr/bin/env bash
set -euo pipefail
MAKE=make
if [ $# != 0 ]; then
echo "Usage: $0"
exit 1;
fi
torch_17_plus=$(python3 <<EOF
from distutils.version import LooseVersion as V
import torch
if V(torch.__version__) >= V("1.7"):
print("true")
else:
print("false")
EOF
)
python_36_plus=$(python3 <<EOF
from distutils.version import LooseVersion as V
import sys
if V(sys.version) >= V("3.6"):
print("true")
else:
print("false")
EOF
)
cuda_version=$(python3 <<EOF
import torch
if torch.cuda.is_available():
version=torch.version.cuda.split(".")
# 10.1.aa -> 101
print(version[0] + version[1])
else:
print("")
EOF
)
echo "cuda_version=${cuda_version}"
if "${torch_17_plus}" && "${python_36_plus}"; then
rm -rf s3prl
# S3PRL Commit id when making this PR: `commit a9b3ba906f3406c3e00aa65b08fbcefa0ea115ef`
git clone https://github.com/s3prl/s3prl.git
else
echo "[WARNING] s3prl is not prepared for pytorch<1.7.0, python<3.6 now"
fi