You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Install Pytorch and torchvision with GPU support.
64
+
# Note: torchtext and torchaudio do not require a separate package.
65
+
# Replace `cu111` by `cu$CUDA_MAJOR_VERSION$CUDA_MINOR_VERSION` once build for CUDA 11.2 is released.
66
+
# Introduced in CUDA 11.1, CUDA Enhanced Compatibility leverages semantic versioning across components in the CUDA Toolkit, an application can be built for one CUDA minor release (such as 11.1) and work across all future minor releases within the major family (such as 11.x).
# Install JAX (Keep JAX version in sync with CPU image)
79
-
RUN pip install jax==0.2.16 jaxlib==0.1.68+cuda$CUDA_MAJOR_VERSION$CUDA_MINOR_VERSION -f https://storage.googleapis.com/jax-releases/jax_releases.html && \
87
+
# TODO(b/181966788) Replace `cuda111` with `cuda$CUDA_MAJOR_VERSION$CUDA_MINOR_VERSION` once new version is out.
88
+
RUN pip install jax==0.2.16 jaxlib==0.1.68+cuda111 -f https://storage.googleapis.com/jax-releases/jax_releases.html && \
80
89
/tmp/clean-layer.sh
81
90
82
91
# Reinstall packages with a separate version for GPU support.
@@ -87,9 +96,8 @@ RUN pip uninstall -y mxnet && \
87
96
# Install GPU-only packages
88
97
RUN pip install pycuda && \
89
98
pip install pynvrtc && \
90
-
# b/190622765 latest version is causing issue. nnabla fixed it in https://github.com/sony/nnabla/issues/892, waiting for new release before we can remove this pin.
0 commit comments