forked from datamol-io/graphium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_ipu.sh
executable file
·98 lines (78 loc) · 3.16 KB
/
install_ipu.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
#!/bin/bash
# Default location for the virtual environment
default_venv_name=".graphium_ipu"
# Allow the user to specify the location of their virtual environment
# If not specified, use the default location
venv_name=${1:-$default_venv_name}
# Constants
sdk_compressed_file="poplar_sdk-ubuntu_20_04-3.3.0-208993bbb7.tar.gz"
sdk_wheel_file="poptorch-3.3.0+113432_960e9c294b_ubuntu_20_04-cp38-cp38-linux_x86_64.whl"
sdk_url="https://downloads.graphcore.ai/direct?package=poplar-poplar_sdk_ubuntu_20_04_3.3.0_208993bbb7-3.3.0&file=${sdk_compressed_file}"
sdk_path="${venv_name}/poplar_sdk-ubuntu_20_04-3.3.0+1403-208993bbb7"
# Check for Python3 and pip
if ! command -v python3 &>/dev/null; then
echo "Python3 is required but it's not installed. Exiting."
exit 1
fi
if ! command -v pip3 &>/dev/null; then
echo "pip3 is required but it's not installed. Exiting."
exit 1
fi
# Remove existing venv directory if it exists
if [[ -d $venv_name ]]; then
echo "Removing existing virtual environment directory..."
rm -rf $venv_name
fi
# Create the virtual environment
echo "Creating virtual environment..."
mkdir -p $venv_name
python3 -m venv $venv_name
source $venv_name/bin/activate
# Update pip to the latest version
echo "Upgrading pip..."
python3 -m pip install --upgrade pip
# Download the Poplar SDK
echo "Downloading Poplar SDK..."
wget -q -O "${venv_name}/${sdk_compressed_file}" "$sdk_url"
# Check the wget exit status
if [ $? -ne 0 ]; then
echo "Failed to download Poplar SDK. Exiting."
exit 1
fi
# Unzip the SDK file
echo "Extracting Poplar SDK..."
tar -xzf "$venv_name/$sdk_compressed_file" -C $venv_name
# Install the PopTorch wheel
echo "Installing PopTorch..."
python3 -m pip install "${sdk_path}/${sdk_wheel_file}"
# Enable Poplar SDK (including Poplar and PopART)
echo "Enabling Poplar SDK..."
source ${sdk_path}/enable
# Install the IPU specific and Graphium requirements
echo "Installing IPU specific and Graphium requirements..."
python3 -m pip install -r requirements_ipu.txt
# Install Graphium in dev mode
echo "Installing Graphium in dev mode..."
python3 -m pip install --no-deps -e .
# This is a quick test make sure poptorch is correctly installed
if python3 -c "import poptorch;print('poptorch installed correctly')" &> /dev/null; then
echo "Installation completed successfully."
else
echo "Installation was not successful. Please check the logs and try again."
exit 1 # Exit with status code 1 to indicate failure
fi
# Download the datafiles (Total ~ 10Mb - nothing compared to the libraries)
echo "Downloading the sub-datasets consisting on the ToyMix dataset"
toymix_dir=expts/data/neurips2023/small-dataset/
mkdir -p $toymix_dir
base_url="https://storage.googleapis.com/graphium-public/datasets/neurips_2023/Small-dataset/"
files=("ZINC12k.csv.gz" "Tox21-7k-12-labels.csv.gz" "qm9.csv.gz" "qm9_random_splits.pt" "Tox21_random_splits.pt" "ZINC12k_random_splits.pt")
for file in "${files[@]}"; do
if [ ! -f "${toymix_dir}${file}" ]; then
echo "Downloading ${file}..."
wget -P "${toymix_dir}" "${base_url}${file}"
else
echo "${file} already exists. Skipping..."
fi
done
echo "Data has been successfully downloaded."