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
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ RUN mkdir /tmp/llvm-project && wget -qO - https://github.com/llvm/llvm-project/a
COPY devel.usertools /usertools
COPY devel.bashrc /root/.bashrc

# Install tf_keras
RUN pip install --no-deps tf_keras==2.17.0

# Setup ENV variables for tensorflow pip build
ENV TF_NEED_ROCM=1
ENV TF_ROCM_GCC=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ ENV TF_NEED_ROCM=1
ENV TF_ROCM_GCC=1
ENV ROCM_TOOLKIT_PATH=${ROCM_PATH}

# Install tf_keras
RUN pip install --no-deps tf_keras==2.17.0

RUN pip install --no-cache-dir /${TF_PKGS_DIR}/${TENSORFLOW_PACKAGE}
RUN echo 'ALL ALL=NOPASSWD:ALL' | tee /etc/sudoers.d/sudo-nopasswd

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ ENV TF_NEED_ROCM=1
ENV TF_ROCM_GCC=1
ENV ROCM_TOOLKIT_PATH=${ROCM_PATH}

# Install tf_keras
RUN pip install --no-deps tf_keras==2.17.0

RUN pip install --no-cache-dir /${TF_PKGS_DIR}/${TENSORFLOW_PACKAGE}
RUN echo 'ALL ALL=NOPASSWD:ALL' | tee /etc/sudoers.d/sudo-nopasswd

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ ENV TF_NEED_ROCM=1
ENV TF_ROCM_GCC=1
ENV ROCM_TOOLKIT_PATH=${ROCM_PATH}

# Install tf_keras
RUN pip install --no-deps tf_keras==2.17.0

RUN pip install --no-cache-dir /${TF_PKGS_DIR}/${TENSORFLOW_PACKAGE}
RUN echo 'ALL ALL=NOPASSWD:ALL' | tee /etc/sudoers.d/sudo-nopasswd

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ RUN if [ -n "${DWLD_TF_SRC_CMD}" ]; then eval "${DWLD_TF_SRC_CMD}"; fi
COPY devel.usertools /usertools
COPY devel.bashrc /root/.bashrc

# Install tf_keras
RUN pip install --no-deps tf_keras==2.17.0

# Setup ENV variables for tensorflow pip build
ENV TF_NEED_ROCM=1
ENV TF_ROCM_GCC=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ RUN if [ -n "${DWLD_TF_SRC_CMD}" ]; then eval "${DWLD_TF_SRC_CMD}"; fi
COPY devel.usertools /usertools
COPY devel.bashrc /root/.bashrc

# Install tf_keras
RUN pip install --no-deps tf_keras==2.17.0

# Setup ENV variables for tensorflow pip build
ENV TF_NEED_ROCM=1
ENV TF_ROCM_GCC=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ RUN if [ -n "${DWLD_TF_SRC_CMD}" ]; then eval "${DWLD_TF_SRC_CMD}"; fi
COPY devel.usertools /usertools
COPY devel.bashrc /root/.bashrc

# Install tf_keras
RUN pip install --no-deps tf_keras==2.17.0

# Setup ENV variables for tensorflow pip build
ENV TF_NEED_ROCM=1
ENV TF_ROCM_GCC=1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ gast == 0.4.0
# For release jobs, we will pin these on the release branch
# Note that the CACHEBUSTER variable, set in the CI builds, will force these to
# be the latest version.
keras-nightly >= 3.2.0.dev
tb-nightly ~= 2.17.0.a
keras >= 3.2.0
tensorboard ~= 2.17.0
# Test dependencies
grpcio ~= 1.59.0 # Earliest version for Python 3.12
portpicker ~= 1.6.0
Expand Down
Loading