forked from jax-ml/jax
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ROCm]: Dockerfile and build script updates
Add hipblaslt in Dockerfile Update docker file to default to ROCm5.6 CI scripts update to handle multiple ROCm versions
- Loading branch information
Rahul Batra
committed
Sep 8, 2023
1 parent
1c99dd5
commit ef79c19
Showing
2 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
FROM rocm/dev-ubuntu-20.04:5.4-complete as rt_build | ||
MAINTAINER Rahul Batra<[email protected]> | ||
################################################################################ | ||
ARG ROCM_DEB_REPO=http://repo.radeon.com/rocm/apt/5.5/ | ||
ARG ROCM_DEB_REPO=http://repo.radeon.com/rocm/apt/5.6/ | ||
ARG ROCM_BUILD_NAME=ubuntu | ||
ARG ROCM_BUILD_NUM=main | ||
ARG ROCM_PATH=/opt/rocm-5.5.0 | ||
ARG ROCM_PATH=/opt/rocm-5.6.0 | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
ARG PYTHON_VERSION=3.9.0 | ||
|
@@ -50,6 +50,7 @@ RUN apt-get update --allow-insecure-repositories && DEBIAN_FRONTEND=noninteracti | |
libxmlsec1-dev \ | ||
libffi-dev \ | ||
liblzma-dev \ | ||
hipblaslt-dev \ | ||
wget && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
@@ -101,6 +102,6 @@ ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH | |
RUN pyenv install $PYTHON_VERSION | ||
RUN eval "$(pyenv init -)" && pyenv local ${PYTHON_VERSION} && pip3 install --upgrade --force-reinstall setuptools pip==22.0 && pip install numpy==1.21.0 setuptools build wheel six auditwheel scipy pytest pytest-rerunfailures matplotlib absl-py | ||
RUN eval "$(pyenv init -)" && pyenv local ${PYTHON_VERSION} && pip3 install --upgrade --force-reinstall setuptools pip && pip install numpy setuptools build wheel six auditwheel scipy pytest pytest-rerunfailures matplotlib absl-py | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters