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
"SCALAPACK_LIBRARY_DIR is set to '${SCALAPACK_LIBRARY_DIR}', but no compatible ScaLAPACK library was found there and find_package(ScaLAPACK) also failed."
577
+
)
578
+
endif()
579
+
endif()
580
+
else()
581
+
if(NOTIS_ABSOLUTE"${SCALAPACK_LIBRARY_DIR}")
582
+
message(
583
+
FATAL_ERROR
584
+
"SCALAPACK_LIBRARY_DIR is set to '${SCALAPACK_LIBRARY_DIR}', but this is not an absolute library path. Please provide either a directory containing libscalapack or a full absolute path to the ScaLAPACK library file."
585
+
)
586
+
elseif(NOTEXISTS"${SCALAPACK_LIBRARY_DIR}")
587
+
message(
588
+
FATAL_ERROR
589
+
"SCALAPACK_LIBRARY_DIR is set to '${SCALAPACK_LIBRARY_DIR}', but this path does not exist. Please provide either a directory containing libscalapack or a full absolute path to the ScaLAPACK library file."
590
+
)
591
+
elseif(IS_DIRECTORY"${SCALAPACK_LIBRARY_DIR}")
592
+
message(
593
+
FATAL_ERROR
594
+
"SCALAPACK_LIBRARY_DIR is set to '${SCALAPACK_LIBRARY_DIR}', but this value resolved to a directory in the full-library-path branch. Please provide either a directory containing libscalapack or a full absolute path to the ScaLAPACK library file."
595
+
)
596
+
endif()
597
+
list(APPEND math_libs ${SCALAPACK_LIBRARY_DIR})
598
+
endif()
599
+
elseif(USE_DSP)
600
+
message(
601
+
FATAL_ERROR
602
+
"USE_DSP is enabled, but SCALAPACK_LIBRARY_DIR is not set. Please provide -DSCALAPACK_LIBRARY_DIR=<scalapack dir or full library path>."
0 commit comments