Skip to content

Commit b4d5b19

Browse files
author
pfeatherstone
committed
- temporarily print which MKL libraries are being used so i can debug actions
- why is openblas not working
1 parent a5344d7 commit b4d5b19

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_cpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
- name: windows-latest-openblas
217217
os : windows-latest
218218
build_openblas : true
219-
configure_extra : -DCMAKE_PREFIX_PATH="C:Program Files (x86)/openblas"
219+
configure_extra : -DCMAKE_PREFIX_PATH="C:/Program Files (x86)/openblas"
220220

221221
- name: windows-latest-mkl
222222
os : windows-latest

dlib/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -598,15 +598,15 @@ if (NOT TARGET dlib)
598598
enable_preprocessor_switch(DLIB_USE_MKL_FFT)
599599
list (APPEND dlib_needed_public_includes ${mkl_include_dir})
600600
if (DLIB_USE_MKL_SEQUENTIAL)
601-
message(STATUS "Using MKL sequential")
601+
message(STATUS "Using MKL sequential ${mkl_libraries_sequential}")
602602
enable_preprocessor_switch(DLIB_USE_MKL_SEQUENTIAL)
603603
list (APPEND dlib_needed_public_libraries ${mkl_libraries_sequential})
604604
elseif(DLIB_USE_MKL_WITH_TBB)
605-
message(STATUS "Using MKL tbb")
605+
message(STATUS "Using MKL tbb ${mkl_libraries_tbb}")
606606
enable_preprocessor_switch(DLIB_USE_MKL_WITH_TBB)
607607
list (APPEND dlib_needed_public_libraries ${mkl_libraries_tbb})
608608
elseif(DLIB_USE_MKL_THREAD)
609-
message(STATUS "Using MKL thread")
609+
message(STATUS "Using MKL thread ${mkl_libraries_thread}")
610610
enable_preprocessor_switch(DLIB_USE_MKL_THREAD)
611611
list (APPEND dlib_needed_public_libraries ${mkl_libraries_thread})
612612
endif()

0 commit comments

Comments
 (0)