From 1b98b8676b2a246380d600e3e2fa1724db7f3f53 Mon Sep 17 00:00:00 2001 From: Adrian Kuegel Date: Tue, 22 Sep 2020 06:46:05 -0700 Subject: [PATCH] Make sure that hexdump is available in ROCM docker image. PiperOrigin-RevId: 333067882 Change-Id: I7cf9dc127f819a0baaeafe6f36aafd88b02a163e --- .../Dockerfile.rbe.rocm-ubuntu18.04-manylinux2010-multipython | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tensorflow/tools/ci_build/Dockerfile.rbe.rocm-ubuntu18.04-manylinux2010-multipython b/tensorflow/tools/ci_build/Dockerfile.rbe.rocm-ubuntu18.04-manylinux2010-multipython index dc7b85bca4d..1f27ab1d502 100644 --- a/tensorflow/tools/ci_build/Dockerfile.rbe.rocm-ubuntu18.04-manylinux2010-multipython +++ b/tensorflow/tools/ci_build/Dockerfile.rbe.rocm-ubuntu18.04-manylinux2010-multipython @@ -44,9 +44,11 @@ COPY install/install_deb_packages.sh /install/ RUN /install/install_deb_packages.sh # Install additional packages needed for this image: +# - bsdmainutils (hexdump) for MLIR generated GPU kernels # - dependencies to build Python from source # - patchelf, as it is required by auditwheel RUN apt-get update && apt-get install -y \ + bsdmainutils \ libbz2-dev \ libffi-dev \ libgdbm-dev \