forked from espnet/espnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_s3prl.sh
executable file
·55 lines (44 loc) · 979 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
#!/usr/bin/env bash
set -euo pipefail
MAKE=make
if [ $# != 0 ]; then
echo "Usage: $0"
exit 1;
fi
if ! python -c "import packaging.version" &> /dev/null; then
python3 -m pip install packaging
fi
torch_18_plus=$(python3 <<EOF
from packaging.version import parse as V
import torch
if V(torch.__version__) >= V("1.8"):
print("true")
else:
print("false")
EOF
)
python_36_plus=$(python3 <<EOF
from packaging.version import parse as V
import sys
if V("{}.{}.{}".format(*sys.version_info[:3])) >= 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_18_plus}" && "${python_36_plus}"; then
python -m pip install s3prl
else
echo "[WARNING] s3prl is not prepared for pytorch<1.8.0, python<3.6 now"
fi