From d2970bb92e20ad00f448de37640a059087649fe0 Mon Sep 17 00:00:00 2001 From: Zach Kimberg Date: Tue, 27 Nov 2018 17:49:35 -0800 Subject: [PATCH] Specify Cuda 0 for ubuntu with mkldnn --- docs/install/ubuntu_setup.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/install/ubuntu_setup.md b/docs/install/ubuntu_setup.md index 31612fc30f9a..f54da6170a3d 100644 --- a/docs/install/ubuntu_setup.md +++ b/docs/install/ubuntu_setup.md @@ -177,6 +177,7 @@ If building on CPU and using MKL and MKL-DNN (make sure MKL is installed accordi cd incubator-mxnet echo "USE_OPENCV = 1" >> ./config.mk echo "USE_BLAS = openblas" >> ./config.mk + echo "USE_CUDA = 0" >> ./config.mk echo "USE_MKLDNN = 1" >> ./config.mk make -j $(nproc) ```