We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 041ba3e commit 586a395Copy full SHA for 586a395
maxtext_jax_ai_image.Dockerfile
@@ -47,6 +47,11 @@ RUN if [ "$DEVICE" = "tpu" ] && [ "$JAX_STABLE_STACK_BASEIMAGE" = "us-docker.pkg
47
python3 -m pip install -r /deps/requirements_with_jax_ai_image.txt; \
48
fi
49
50
+# Install google-tunix for TPU devices, skip for GPU
51
+RUN if [ "$DEVICE" = "tpu" ]; then \
52
+ python3 -m pip install 'google-tunix>=0.1.2'; \
53
+ fi
54
+
55
# Now copy the remaining code (source files that may change frequently)
56
COPY . .
57
0 commit comments