Skip to content
Open
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
10 changes: 5 additions & 5 deletions python/neural_network/Dockerfile.all-jupyter-py36-cu101
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
# ------------------------------------------------------------------

$PIP_INSTALL \
tf-nightly-gpu-2.0-preview \
tf-nightly-gpu \
&& \

# ==================================================================
Expand Down Expand Up @@ -320,11 +320,11 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
ln -s /usr/lib/x86_64-linux-gnu/libmpi_cxx.so.20 /usr/lib/x86_64-linux-gnu/libmpi_cxx.so.1 && \
ln -s /usr/lib/x86_64-linux-gnu/libmpi.so.20.10.1 /usr/lib/x86_64-linux-gnu/libmpi.so.12 && \

wget --no-verbose -O - https://github.com/01org/mkl-dnn/releases/download/v0.14/mklml_lnx_2018.0.3.20180406.tgz | tar -xzf - && \
cp mklml*/* /usr/local -r && \
wget --no-verbose -O - https://github.com/oneapi-src/oneDNN/releases/download/v1.4/dnnl_lnx_1.4.0_cpu_iomp.tgz | tar -xzf - && \
cp dnnl*/* /usr/local -r && \

wget --no-verbose -O - https://github.com/01org/mkl-dnn/archive/v0.14.tar.gz | tar -xzf - && \
cd mkl-dnn-0.14 && mkdir build && cd build && \
wget --no-verbose -O - https://github.com/oneapi-src/oneDNN/archive/v1.4.tar.gz | tar -xzf - && \
cd oneDNN-1.4 && mkdir build && cd build && \
ln -s /usr/local external && \
cmake -D CMAKE_BUILD_TYPE=RELEASE \
-D CMAKE_INSTALL_PREFIX=/usr/local \
Expand Down