You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CMakeLists.txt
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,8 @@ option(NO_AFFINITY "Disable support for CPU affinity masks to avoid binding proc
29
29
else()
30
30
set(NO_AFFINITY1)
31
31
endif()
32
+
option(CPP_THREAD_SAFETY_TEST"Run a massively parallel DGEMM test to confirm thread safety of the library (requires OpenMP and about 1.3GB of RAM)"OFF)
33
+
option(CPP_THREAD_SAFETY_GEMV"Run a massively parallel DGEMV test to confirm thread safety of the library (requires OpenMP)"OFF)
32
34
33
35
# Add a prefix or suffix to all exported symbol names in the shared library.
34
36
# Avoids conflicts with other BLAS libraries, especially when using
@@ -234,6 +236,9 @@ if (NOT MSVC AND NOT NOFORTRAN)
234
236
add_subdirectory(ctest)
235
237
endif()
236
238
add_subdirectory(lapack-netlib/TESTING)
239
+
if (CPP_THREAD_SAFETY_TESTORCPP_THREAD_SAFETY_GEMV)
0 commit comments