From 5439ab3cdcee8b1f15fc78d8a8e3942d37baeb2d Mon Sep 17 00:00:00 2001 From: sf-wind Date: Tue, 20 Feb 2018 15:17:34 -0800 Subject: [PATCH] Remove gf library in MKL (#1976) * Remove OpenGL code from benchmark * Make it possible to print plot in the ipython notbook * Create the blob if the blob is not specified in the init net * Do not use gf library for MKL. Even after I install the entire MKL library it is still not found. After removing it, the MKL code can still run --- cmake/Modules/FindMKL.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/Modules/FindMKL.cmake b/cmake/Modules/FindMKL.cmake index 2060c9ed560..ac0fa9cd24b 100644 --- a/cmake/Modules/FindMKL.cmake +++ b/cmake/Modules/FindMKL.cmake @@ -47,10 +47,10 @@ else() if(WIN32) list(APPEND __mkl_libs intel_c) else() - list(APPEND __mkl_libs intel gf) + list(APPEND __mkl_libs intel) endif() else() - list(APPEND __mkl_libs intel_lp64 gf_lp64) + list(APPEND __mkl_libs intel_lp64) endif() if(MKL_MULTI_THREADED)