forked from AI-Hypercomputer/maxtext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
245 lines (220 loc) · 10.1 KB
/
Copy pathsetup.sh
File metadata and controls
245 lines (220 loc) · 10.1 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
233
234
235
236
237
238
239
240
241
242
243
244
245
#!/bin/bash
# Copyright 2023–2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Description:
# bash setup.sh MODE={stable,nightly,libtpu-only} LIBTPU_GCS_PATH={gcs_path_to_custom_libtpu} DEVICE={tpu,gpu}
# You need to specify a MODE, default value stable.
# You have the option to provide a LIBTPU_GCS_PATH that points to a libtpu.so provided to you by Google.
# In libtpu-only MODE, the LIBTPU_GCS_PATH is mandatory.
# For MODE=stable you may additionally specify JAX_VERSION, e.g. JAX_VERSION=0.4.13
# For DEVICE=gpu, you may also specify JAX_VERSION when MODE=nightly, e.g. JAX_VERSION=0.4.36.dev20241109
# Enable "exit immediately if any command fails" option
set -e
export DEBIAN_FRONTEND=noninteractive
export NEEDRESTART_SUSPEND=1
export NEEDRESTART_MODE=l
# Enable automatic restart of services without the need for prompting
if command -v sudo &> /dev/null && [ -f /etc/needrestart/needrestart.conf ]; then
sudo sed -i "s/#\$nrconf{restart} = 'i';/\$nrconf{restart} = 'a';/" /etc/needrestart/needrestart.conf
else
echo "Skipping editing needrestart.conf"
fi
echo "Checking Python version..."
# This command will fail if the Python version is less than 3.12
if ! python3 -c 'import sys; assert sys.version_info >= (3, 12)' 2>/dev/null; then
# If the command fails, print an error
CURRENT_VERSION=$(python3 --version 2>&1) # Get the full version string
echo -e "\n\e[31mERROR: Outdated Python Version! You are currently using $CURRENT_VERSION, but MaxText requires Python version 3.12 or higher.\e[0m"
# Ask the user if they want to create a virtual environment with uv
read -p "Would you like to create a Python 3.12 virtual environment using uv? (y/n) " -n 1 -r
echo # Move to a new line after input
if [[ $REPLY =~ ^[Yy]$ ]]; then
# Check if uv is installed first; if not, install uv
if ! command -v uv &> /dev/null; then
pip install uv
fi
maxtext_dir=$(pwd)
cd
# Ask for the venv name
read -p "Please enter a name for your new virtual environment (default: maxtext_venv): " venv_name
# Use a default name if the user provides no input
if [ -z "$venv_name" ]; then
venv_name="maxtext_venv"
echo "No name provided. Using default name: '$venv_name'"
fi
echo "Creating virtual environment '$venv_name' with Python 3.12..."
uv venv --python 3.12 "$venv_name" --seed
printf '%s\n' "$(realpath -- "$venv_name")" >> /tmp/venv_created
echo -e "\n\e[32mVirtual environment '$venv_name' created successfully!\e[0m"
echo "To activate it, run the following command:"
echo -e "\e[33m source ~/$venv_name/bin/activate\e[0m"
echo "After activating the environment, please re-run this script."
cd $maxtext_dir
else
echo "Exiting. Please upgrade your Python environment to continue."
fi
# Exit the script since the initial Python check failed
exit 1
fi
echo "Python version check passed. Continuing with script."
echo "--------------------------------------------------"
apt-get update && apt-get install -y sudo
(sudo bash || bash) <<'EOF'
apt update && \
apt install -y numactl lsb-release gnupg curl net-tools iproute2 procps lsof git ethtool && \
export GCSFUSE_REPO=gcsfuse-`lsb_release -c -s`
echo "deb https://packages.cloud.google.com/apt $GCSFUSE_REPO main" | tee /etc/apt/sources.list.d/gcsfuse.list
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
apt update -y && apt -y install gcsfuse
rm -rf /var/lib/apt/lists/*
EOF
python3 -m pip install -U setuptools wheel uv
# Set environment variables
for ARGUMENT in "$@"; do
IFS='=' read -r KEY VALUE <<< "$ARGUMENT"
export "$KEY"="$VALUE"
done
if [[ -z "$DEVICE" ]]; then
export DEVICE="tpu"
fi
if [[ $JAX_VERSION == NONE ]]; then
unset JAX_VERSION
fi
if [[ $LIBTPU_GCS_PATH == NONE ]]; then
unset LIBTPU_GCS_PATH
fi
if [[ -n $JAX_VERSION && ! ($MODE == "stable" || -z $MODE || ($MODE == "nightly" && $DEVICE == "gpu")) ]]; then
echo -e "\n\nError: You can only specify a JAX_VERSION with stable mode (plus nightly mode on GPU).\n\n"
exit 1
fi
if [[ $DEVICE == "tpu" ]]; then
libtpu_path="$HOME/custom_libtpu/libtpu.so"
if [[ "$MODE" == "libtpu-only" ]]; then
# Only update custom libtpu.
if [[ -n "$LIBTPU_GCS_PATH" ]]; then
# Install custom libtpu
echo "Installing libtpu.so from $LIBTPU_GCS_PATH to $libtpu_path"
# Install required dependency
python3 -m uv pip install -U crcmod
# Copy libtpu.so from GCS path
gsutil cp "$LIBTPU_GCS_PATH" "$libtpu_path"
exit 0
else
echo -e "\n\nError: You must provide a custom libtpu for libtpu-only mode.\n\n"
exit 1
fi
fi
fi
# Save the script folder path of maxtext
run_name_folder_path=$(pwd)
# Install dependencies from requirements.txt
cd "$run_name_folder_path" && python3 -m uv pip install --upgrade pip
python3 -m uv pip install --no-cache-dir -U -r requirements.txt
# Install maxtext package
if [ -f 'pyproject.toml' ]; then
python3 -m uv pip install -e . --no-deps --resolution=lowest
install_maxtext_github_deps
fi
# Uninstall existing jax, jaxlib and libtpu-nightly
python3 -m uv pip show jax && python3 -m uv pip uninstall jax
python3 -m uv pip show jaxlib && python3 -m uv pip uninstall jaxlib
python3 -m uv pip show libtpu-nightly && python3 -m uv pip uninstall libtpu-nightly
# Delete custom libtpu if it exists
if [ -e "$libtpu_path" ]; then
rm "$libtpu_path"
fi
if [[ "$MODE" == "stable" || ! -v MODE ]]; then
# Stable mode
if [[ $DEVICE == "tpu" ]]; then
echo "Installing stable jax, jaxlib for tpu"
if [[ -n "$JAX_VERSION" ]]; then
echo "Installing stable jax, jaxlib, libtpu version ${JAX_VERSION}"
python3 -m uv pip install jax[tpu]==${JAX_VERSION} -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
else
echo "Installing stable jax, jaxlib, libtpu for tpu"
python3 -m uv pip install 'jax[tpu]>0.4' -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
fi
if [[ -n "$LIBTPU_GCS_PATH" ]]; then
# Install custom libtpu
echo "Installing libtpu.so from $LIBTPU_GCS_PATH to $libtpu_path"
# Install required dependency
python3 -m uv pip install -U crcmod
# Copy libtpu.so from GCS path
gsutil cp "$LIBTPU_GCS_PATH" "$libtpu_path"
fi
if [[ -n "$LIBTPU_GCS_PATH" ]]; then
# Install custom libtpu
echo "Installing libtpu.so from $LIBTPU_GCS_PATH to $libtpu_path"
# Install required dependency
python3 -m uv pip install -U crcmod
# Copy libtpu.so from GCS path
gsutil cp "$LIBTPU_GCS_PATH" "$libtpu_path"
fi
elif [[ $DEVICE == "gpu" ]]; then
echo "Installing stable jax, jaxlib for NVIDIA gpu"
if [[ -n "$JAX_VERSION" ]]; then
echo "Installing stable jax, jaxlib ${JAX_VERSION}"
python3 -m uv pip install -U "jax[cuda12]==${JAX_VERSION}"
else
echo "Installing stable jax, jaxlib, libtpu for NVIDIA gpu"
python3 -m uv pip install "jax[cuda12]"
fi
export NVTE_FRAMEWORK=jax
if [[ -n "$JAX_VERSION" && "$JAX_VERSION" != "0.7.0" ]]; then
python3 -m uv pip install transformer-engine[jax]
else
python3 -m uv pip install git+https://github.com/NVIDIA/TransformerEngine.git@9d031f
fi
fi
elif [[ $MODE == "nightly" ]]; then
# Nightly mode
if [[ $DEVICE == "gpu" ]]; then
# Install jax-nightly
if [[ -n "$JAX_VERSION" ]]; then
echo "Installing jax-nightly, jaxlib-nightly ${JAX_VERSION}"
python3 -m uv pip install -U --pre jax==${JAX_VERSION} jaxlib==${JAX_VERSION} jax-cuda12-plugin[with-cuda] jax-cuda12-pjrt -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/
else
echo "Installing latest jax-nightly, jaxlib-nightly"
python3 -m uv pip install -U --pre jax jaxlib jax-cuda12-plugin[with-cuda] jax-cuda12-pjrt -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/
fi
# Install Transformer Engine
export NVTE_FRAMEWORK=jax
python3 -m uv pip install https://github.com/NVIDIA/TransformerEngine/archive/9d031f.zip
elif [[ $DEVICE == "tpu" ]]; then
echo "Installing jax-nightly, jaxlib-nightly"
# Install jax-nightly
python3 -m uv pip install --pre -U jax -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/
# Install jaxlib-nightly
python3 -m uv pip install --pre -U jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/
if [[ -n "$LIBTPU_GCS_PATH" ]]; then
# Install custom libtpu
echo "Installing libtpu.so from $LIBTPU_GCS_PATH to $libtpu_path"
# Install required dependency
python3 -m uv pip install -U crcmod
# Copy libtpu.so from GCS path
gsutil cp "$LIBTPU_GCS_PATH" "$libtpu_path"
else
# Install libtpu-nightly
echo "Installing libtpu-nightly"
python3 -m uv pip install -U --pre libtpu -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
fi
echo "Installing nightly tensorboard plugin profile"
python3 -m uv pip install tbp-nightly --upgrade
fi
echo "Installing nightly tensorboard plugin profile"
python3 -m uv pip install tbp-nightly --upgrade
else
echo -e "\n\nError: You can only set MODE to [stable,nightly,libtpu-only].\n\n"
exit 1
fi