From df92d05ef369368f473a80b32aece44073db3986 Mon Sep 17 00:00:00 2001 From: Tao Luo Date: Mon, 21 Jan 2019 19:13:41 +0800 Subject: [PATCH] remove legacy IOS option test=develop --- cmake/cblas.cmake | 7 ------- cmake/external/libxsmm.cmake | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/cmake/cblas.cmake b/cmake/cblas.cmake index 74b1ef212..52ac31d1d 100644 --- a/cmake/cblas.cmake +++ b/cmake/cblas.cmake @@ -92,10 +92,3 @@ if(WITH_SYSTEM_BLAS) message(STATUS "Found reference-cblas (include: ${CBLAS_INC_DIR}, library: ${CBLAS_LIBRARIES})") endif() endif() - -if(IOS_USE_VECLIB_FOR_BLAS AND VECLIB_FOUND) - set(CBLAS_FOUND ON) - set(CBLAS_PROVIDER vecLib) - set(CBLAS_INC_DIR ${VECLIB_INC_DIR}) - add_definitions(-DPADDLE_USE_VECLIB) -endif() diff --git a/cmake/external/libxsmm.cmake b/cmake/external/libxsmm.cmake index 05fb94a72..39f49d210 100644 --- a/cmake/external/libxsmm.cmake +++ b/cmake/external/libxsmm.cmake @@ -20,7 +20,7 @@ IF(NOT WITH_LIBXSMM) ENDIF() IF(WIN32 OR APPLE) - MESSAGE(WARNING "Windows, Mac or Mobile are not supported with libxsmm in Paddle yet.") + MESSAGE(WARNING "Windows, Mac are not supported with libxsmm in Paddle yet.") SET(WITH_LIBXSMM OFF CACHE STRING "Disable LIBXSMM" FORCE) return() ENDIF() -- GitLab