Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/llama-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ jobs:
wget -O /usr/local/bin/bazel "$BIN_URL/v1.26.0/bazelisk-linux-amd64"
chmod +x /usr/local/bin/bazel
bazel version
apt update && apt install -y libdw1 libglib2.0-0
apt update && apt install -y libglib2.0-0
export TRAIN_SETTING="${{ matrix.model-name }}"
cd /workspace && bash -i bazel_run_anynode.sh 2>&1 | tee logs.log
tail -n 25 logs.log > training_summary.txt'
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/rocm-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ jobs:

- name: Run MaxText training and save logs
run: |
docker exec maxtext_container bash -c \
"apt update && apt install -y libdw1"
for config in \
MaxText/configs/models/gpu/llama2_7b_rocm.yml \
MaxText/configs/models/gpu/gemma_2b_rocm.yml \
Expand Down
3 changes: 3 additions & 0 deletions docker/Dockerfile.jax-ubu22
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ RUN --mount=type=cache,target=/var/cache/apt \
libbz2-dev liblzma-dev \
libncursesw5-dev xz-utils \
tk-dev uuid-dev \
# workaround for ROCm 7.0.x missing dep
# Remove once ROCm/ROCm-docker#158 landed
libdw1 \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

# Download and unpack python-v3.11
Expand Down
3 changes: 3 additions & 0 deletions docker/Dockerfile.jax-ubu24
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ RUN --mount=type=cache,target=/var/cache/apt \
RUN apt-get update && apt-get install -y \
sqlite3 libsqlite3-dev \
libbz2-dev \
# workaround for ROCm 7.0.x missing dep
# Remove once ROCm/ROCm-docker#158 landed
libdw1t64 \
&& rm -rf /var/lib/apt/lists/*

# Add target file to help determine which device(s) to build for
Expand Down