From bbc63d503368cfb30da63b8f0cc29736199d6c09 Mon Sep 17 00:00:00 2001 From: Veda Murthy Date: Tue, 22 Aug 2017 15:11:19 -0700 Subject: [PATCH 1/2] Fixed type in arg to .theanorc + fixed error --- Dockerfile.cpu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.cpu b/Dockerfile.cpu index 506b734..33551d5 100644 --- a/Dockerfile.cpu +++ b/Dockerfile.cpu @@ -172,7 +172,7 @@ RUN pip --no-cache-dir install git+git://github.com/Theano/Theano.git@${THEANO_V echo "[global]\ndevice=cpu\nfloatX=float32\nmode=FAST_RUN \ \n[lib]\ncnmem=0.95 \ \n[nvcc]\nfastmath=True \ - \n[blas]\nldflag = -L/usr/lib/openblas-base -lopenblas \ + \n[blas]\nldflags = -L/usr/lib/ -lblas \ \n[DebugMode]\ncheck_finite=1" \ > /root/.theanorc From abfbb7408a48ea1bfcc82bbef4252af4940d062c Mon Sep 17 00:00:00 2001 From: Veda Murthy Date: Tue, 22 Aug 2017 15:12:00 -0700 Subject: [PATCH 2/2] Fixed typo + error --- Dockerfile.gpu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.gpu b/Dockerfile.gpu index 3bad5a4..1fd3442 100644 --- a/Dockerfile.gpu +++ b/Dockerfile.gpu @@ -178,7 +178,7 @@ RUN pip --no-cache-dir install git+git://github.com/Theano/Theano.git@${THEANO_V echo "[global]\ndevice=gpu\nfloatX=float32\noptimizer_including=cudnn\nmode=FAST_RUN \ \n[lib]\ncnmem=0.95 \ \n[nvcc]\nfastmath=True \ - \n[blas]\nldflag = -L/usr/lib/openblas-base -lopenblas \ + \n[blas]\nldflags = -L/usr/lib/ -lblas \ \n[DebugMode]\ncheck_finite=1" \ > /root/.theanorc