From 6fd129644afb659faded20e8c0f5cd60cea0b1b1 Mon Sep 17 00:00:00 2001 From: Michael Schmitz Date: Mon, 7 Aug 2017 16:01:48 -0700 Subject: [PATCH] Remove obsolete rm since we upgraded to Pytorch 0.2. --- Dockerfile.cpu | 4 ---- Dockerfile.gpu | 4 ---- 2 files changed, 8 deletions(-) diff --git a/Dockerfile.cpu b/Dockerfile.cpu index deaa650868d..5ffdd412261 100644 --- a/Dockerfile.cpu +++ b/Dockerfile.cpu @@ -50,9 +50,5 @@ RUN echo "source activate allennlp" >> ~/.bashrc COPY . . -# Remove file to avoid a "GOMP_4.0 not found" error -# https://github.com/pytorch/pytorch/issues/643#issuecomment-314949320 -RUN rm /opt/conda/envs/allennlp/lib/python3.5/site-packages/torch/lib/libgomp.so.1 - ENTRYPOINT ["/bin/sh", "-c"] CMD ["/bin/bash"] diff --git a/Dockerfile.gpu b/Dockerfile.gpu index 880b930626c..57a9c4faae5 100644 --- a/Dockerfile.gpu +++ b/Dockerfile.gpu @@ -49,9 +49,5 @@ RUN echo "source activate allennlp" >> ~/.bashrc COPY . . -# Remove file to avoid a "GOMP_4.0 not found" error -# https://github.com/pytorch/pytorch/issues/643#issuecomment-314949320 -RUN rm /opt/conda/envs/allennlp/lib/python3.5/site-packages/torch/lib/libgomp.so.1 - ENTRYPOINT ["/bin/sh", "-c"] CMD ["/bin/bash"]