-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcreate_python_library.sh
More file actions
232 lines (195 loc) · 5.62 KB
/
create_python_library.sh
File metadata and controls
232 lines (195 loc) · 5.62 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#!/bin/bash
compute_canada=false
mac_os=false
cpu=false
no_torch=false
niagara=false
env_name="venv"
parent_dir="midigpt_workspace" # default parent directory name
cuda=false
trace=false
# Parse arguments
for ((i=1;i<=$#;i++)); do
case ${!i} in
--trace)
trace=true
;;
--compute_canada)
compute_canada=true
;;
--cpu)
cpu=true
;;
--mac_os)
mac_os=true
;;
--no_torch)
no_torch=true
;;
--niagara)
niagara=true
;;
--env_name)
i=$((i+1))
env_name=${!i}
;;
-n=*|--name=*) # new parent directory name option
parent_dir="${!i#*=}"
shift
;;
--cuda)
if $no_torch; then
echo "Cannot use --cuda and --no_torch at the same time."
exit 1
fi
cuda=true
;;
*)
echo "Unknown option ${!i}"
exit 1
;;
esac
done
# Get the current directory name
dir_name=$(basename `pwd`)
# Get the parent directory name
parent_dir_name=$(basename $(dirname `pwd`))
if [ "$parent_dir_name" != "$parent_dir" ]; then
# Go to the parent directory
cd ..
# Create the new parent directory
mkdir $parent_dir
# Move the old directory into the new parent directory
mv $dir_name $parent_dir/
# Change to the old directory, which is now inside the parent directory
cd $parent_dir/$dir_name
fi
# Load modules if we are in compute_canada and niagara
if $compute_canada; then
if $niagara; then
module load CCEnv arch/avx512
fi
module load StdEnv/2020
module load cmake/3.23.1
module load gcc/11.3.0
module load protobuf/3.12.3
module load python/3.8.2
mkdir ../CCLOG
fi
# Environment creation
if [[ -n ../$env_name ]]; then
if [[ -d ../$env_name ]]; then
echo "Environment $env_name already exists, activating it..."
else
echo "Environment $env_name does not exist, creating it..."
if $compute_canada; then
virtualenv ../$env_name
else
python3 -m venv ../$env_name
fi
fi
fi
source ../$env_name/bin/activate
# Install requirements
pip install -r pip_requirements/common_requirements.txt
if $compute_canada; then
pip install -r pip_requirements/create_dataset_requirements.txt
fi
if $mac_os; then
pip install -r pip_requirements/inference_requirements.txt
fi
if $compute_canada && ! $niagara; then # anf if no torch
pip install -r pip_requirements/train_requirements.txt
fi
#deactivate
# Set CMake flags based on command line arguments
cmake_flags=""
if $compute_canada; then
cmake_flags="$cmake_flags -Dcompute_canada=ON"
fi
if $no_torch; then
cmake_flags="$cmake_flags -Dno_torch=ON"
fi
if $trace; then
cmake_flags="$cmake_flags -Dtrace=ON"
fi
# Code to check if libtorch and pybind11 are already downloaded
if ! $no_torch; then
libtorch_path="libraries/libtorch"
libtorch_url="https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.0.0%2Bcpu.zip"
if $cuda; then
libtorch_url="https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.0.0%2Bcu118.zip"
fi
fi
pybind11_path="libraries/pybind11"
midifile_path="libraries/midifile"
pybind11_url="https://github.com/pybind/pybind11.git"
midifile_url="https://github.com/craigsapp/midifile"
if ! $no_torch; then
if $mac_os; then
libtorch_url="https://download.pytorch.org/libtorch/cpu/libtorch-macos-2.0.1.zip"
fi
if $cpu; then
libtorch_url="https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.0.0%2Bcpu.zip"
fi
# Check if libtorch folder exists and is not empty
if [ ! -d "$libtorch_path" ] || [ -z "$(ls -A "$libtorch_path")" ]; then
echo "libtorch folder does not exist or is empty. Downloading and extracting..."
mkdir -p "$libtorch_path"
curl -L "$libtorch_url" -o libtorch.zip
unzip -q libtorch.zip -d libraries/
rm libtorch.zip
echo "libtorch downloaded and extracted."
else
echo "libtorch folder exists and is not empty. No need to download."
fi
fi
# Check if pybind11 folder exists and is not empty
if [ ! -d "$pybind11_path" ] || [ -z "$(ls -A "$pybind11_path")" ]; then
echo "pybind11 folder does not exist or is empty. Cloning the repository..."
mkdir -p libraries
git clone "$pybind11_url" "$pybind11_path"
echo "pybind11 downloaded."
cd libraries/pybind11
git reset --hard 5ccb9e4
cd ../../
echo "pybind11 reset to working build"
else
echo "pybind11 folder exists and is not empty. No need to download."
fi
# Check if midifile folder exists and is not empty
if [ ! -d "$midifile_path" ] || [ -z "$(ls -A "$midifile_path")" ]; then
echo "midifile folder does not exist or is empty. Cloning the repository..."
mkdir -p libraries
git clone "$midifile_url" "$midifile_path"
echo "midifile downloaded."
cd libraries/midifile
git reset --hard 838c62c
cd ../../
echo "midifile reset to working build"
else
echo "midifile folder exists and is not empty. No need to download."
fi
# Middle section of the script to build the python library
rm -rf ./python_lib
mkdir ./python_lib
rm -rf ./libraries/protobuf/build
mkdir ./libraries/protobuf/build
cd ./libraries/protobuf/src
protoc --cpp_out ../build *.proto
cd ../../..
cd ./python_lib
if $mac_os; then
cmake $cmake_flags .. -Dmac_os=ON -DCMAKE_PREFIX_PATH=$(python3 -c 'import torch;print(torch.utils.cmake_prefix_path)')
else
cmake $cmake_flags ..
fi
make
python3 -c "import midigpt; print('midigpt python library built successfully')"
cd ..
if $compute_canada; then
dos2unix create_dataset_compute_canada.sh
dos2unix train_dataset.sh
fi
cd ./python_lib
cd ..