Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Fix/link to mkl build #13268

Merged
merged 2 commits into from Nov 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion cmake/DownloadMKLML.cmake
Expand Up @@ -54,6 +54,7 @@ elseif(APPLE)
set(MKLROOT "${CMAKE_CURRENT_BINARY_DIR}/mklml/${MKL_NAME}")

message(STATUS "Setting MKLROOT path to ${MKLROOT}")
include_directories(${MKLROOT}/include)

elseif(UNIX)
set(MKL_NAME "mklml_lnx_${MKLML_RELEASE_FILE_SUFFIX}")
Expand All @@ -65,8 +66,8 @@ elseif(UNIX)
"-C" "${CMAKE_CURRENT_BINARY_DIR}/mklml/")

set(MKLROOT "${CMAKE_CURRENT_BINARY_DIR}/mklml/${MKL_NAME}")

message(STATUS "Setting MKLROOT path to ${MKLROOT}")
include_directories(${MKLROOT}/include)

else()
message(FATAL_ERROR "Wrong platform")
Expand Down