forked from luigifreda/plvs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bash_utils.sh
106 lines (91 loc) · 2.34 KB
/
bash_utils.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/usr/bin/env bash
# a collection of bash utils
function print_blue(){
printf "\033[34;1m"
printf "$@ \n"
printf "\033[0m"
}
function print_red(){
printf "\033[31;1m"
printf "$@ \n"
printf "\033[0m"
}
function make_dir(){
if [ ! -d $1 ]; then
mkdir $1
fi
}
function make_buid_dir(){
make_dir build
}
function check_package(){
package_name=$1
PKG_OK=$(dpkg-query -W --showformat='${Status}\n' $package_name |grep "install ok installed")
#echo "checking for $package_name: $PKG_OK"
if [ "" == "$PKG_OK" ]; then
#echo "$package_name is not installed"
echo 1
else
echo 0
fi
}
function install_package(){
do_install=$(check_package $1)
if [ $do_install -eq 1 ] ; then
sudo apt-get install -y $1
fi
}
function install_packages(){
for var in "$@"
do
install_package "$var"
done
}
function check_pip_package(){
package_name=$1
PKG_OK=$(pip list |grep $package_name)
#print_blue "checking for package $package_name: $PKG_OK"
if [ "" == "$PKG_OK" ]; then
#print_blue "$package_name is not installed"
echo 1
else
echo 0
fi
}
function install_pip_package(){
do_install=$(check_pip_package $1)
if [ $do_install -eq 1 ] ; then
pip3 install --user $1
fi
}
function install_pip_packages(){
for var in "$@"
do
install_pip_package "$var"
done
}
function extract_version(){
#version=$(echo $1 | sed 's/[^0-9]*//g')
#version=$(echo $1 | sed 's/[[:alpha:]|(|[:space:]]//g')
version=$(echo $1 | sed 's/[[:alpha:]|(|[:space:]]//g' | sed s/://g)
echo $version
}
function get_cuda_version(){
if [ -d /usr/local/cuda ]; then
if [ -f /usr/local/cuda/version.txt ]; then
CUDA_STRING=$(cat /usr/local/cuda/version.txt)
CUDA_VERSION=$(extract_version "$CUDA_STRING")
echo $CUDA_VERSION
else
# Extract the CUDA version from the nvidia-smi output
CUDA_VERSION=$(/usr/local/cuda/bin/nvcc --version | grep release | awk '{print $5}' | sed 's/,//')
echo $CUDA_VERSION
fi
else
echo 0
fi
}
function get_current_nvidia_driver_version(){
NVIDIA_DRIVER_VERSION=$(nvidia-smi --query-gpu=driver_version --format=csv,noheader | cut -d. -f1)
echo $NVIDIA_DRIVER_VERSION
}