Skip to content

Commit 7738e6b

Browse files
committed
Fix reporting linear algebra library
1 parent b3299de commit 7738e6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynadjust/include/config/dnaversion.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const char* const __dynadjust_app_name__ = "dynadjust";
127127
#define __LINEAR_ALGEBRA_LIB__ "OpenBLAS"
128128
#elif (defined(_WIN32) && !defined(USE_MKL)) // Windows - No LAPACKE and no MKL
129129
#define __LINEAR_ALGEBRA_LIB__ "OpenBLAS"
130-
#elif (defined(_WIN32) && defined(USE_MKL)) // Linux or Windows - Intel MKL with ILP64
130+
#elif (defined(_WIN32) || defined(USE_MKL)) // Linux or Windows - Intel MKL with ILP64
131131
#define __LINEAR_ALGEBRA_LIB__ "Intel MKL"
132132
#else // LAPACKE fall back
133133
#define __LINEAR_ALGEBRA_LIB__ "OpenBLAS"

0 commit comments

Comments
 (0)