Skip to content

Commit e21e564

Browse files
For DeepSeek inference pin JAX/MaxText to specific commits
1 parent 099cfc5 commit e21e564

File tree

1 file changed

+6
-3
lines changed
  • inference/trillium/JetStream-Maxtext/DeepSeek-R1-671B/docker

1 file changed

+6
-3
lines changed

inference/trillium/JetStream-Maxtext/DeepSeek-R1-671B/docker/Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,11 @@ ENV XCLOUD_ENVIRONMENT=GCP
4444
# Install JetStream and MaxText
4545

4646
RUN git clone https://github.com/AI-Hypercomputer/JetStream.git && \
47-
git clone https://github.com/AI-Hypercomputer/maxtext.git && \
48-
git clone https://github.com/google/aqt.git
47+
cd JetStream && git checkout 29329e8 && cd .. && \
48+
git clone https://github.com/AI-Hypercomputer/maxtext.git && \
49+
cd maxtext && git checkout 4f63ce61 && cd .. && \
50+
git clone https://github.com/google/aqt.git && \
51+
cd aqt && git checkout 28504f5 && cd ..
4952

5053
RUN cd /maxtext && bash setup.sh && pip install torch --index-url https://download.pytorch.org/whl/cpu
5154

@@ -56,4 +59,4 @@ RUN cd /JetStream && pip install -e .
5659
RUN apt -y update && apt-get -y install python3-dev && apt-get -y install build-essential
5760
RUN cp -r /aqt/aqt/* /usr/local/lib/python3.10/dist-packages/aqt/
5861

59-
ENTRYPOINT [ "/bin/bash" ]
62+
ENTRYPOINT [ "/bin/bash" ]

0 commit comments

Comments
 (0)