123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- if (NOT PASTIX_FOUND)
- set(PASTIX_DIR "" CACHE PATH "Installation directory of PASTIX library")
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "A cache variable, namely PASTIX_DIR, has been set to specify the install directory of PASTIX")
- endif()
- endif()
-
-
- set(PASTIX_LOOK_FOR_MPI ON)
- set(PASTIX_LOOK_FOR_SEQ OFF)
- set(PASTIX_LOOK_FOR_STARPU OFF)
- set(PASTIX_LOOK_FOR_STARPU_CUDA OFF)
- set(PASTIX_LOOK_FOR_STARPU_FXT OFF)
- set(PASTIX_LOOK_FOR_SCOTCH ON)
- set(PASTIX_LOOK_FOR_PTSCOTCH OFF)
- set(PASTIX_LOOK_FOR_METIS OFF)
-
- if( PASTIX_FIND_COMPONENTS )
- foreach( component ${PASTIX_FIND_COMPONENTS} )
- if (${component} STREQUAL "SEQ")
-
- set(PASTIX_LOOK_FOR_SEQ ON)
- set(PASTIX_LOOK_FOR_MPI OFF)
- endif()
- if (${component} STREQUAL "MPI")
-
- set(PASTIX_LOOK_FOR_SEQ OFF)
- set(PASTIX_LOOK_FOR_MPI ON)
- endif()
- if (${component} STREQUAL "STARPU")
-
- set(PASTIX_LOOK_FOR_STARPU ON)
- endif()
- if (${component} STREQUAL "STARPU_CUDA")
-
- set(PASTIX_LOOK_FOR_STARPU ON)
- set(PASTIX_LOOK_FOR_STARPU_CUDA ON)
- endif()
- if (${component} STREQUAL "STARPU_FXT")
-
- set(PASTIX_LOOK_FOR_STARPU_FXT ON)
- endif()
- if (${component} STREQUAL "SCOTCH")
- set(PASTIX_LOOK_FOR_SCOTCH ON)
- endif()
- if (${component} STREQUAL "SCOTCH")
- set(PASTIX_LOOK_FOR_PTSCOTCH ON)
- endif()
- if (${component} STREQUAL "METIS")
- set(PASTIX_LOOK_FOR_METIS ON)
- endif()
- endforeach()
- endif()
-
-
-
-
-
-
-
-
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect pthread")
- endif()
- if (PASTIX_FIND_REQUIRED)
- find_package(Threads REQUIRED QUIET)
- else()
- find_package(Threads QUIET)
- endif()
- set(PASTIX_EXTRA_LIBRARIES "")
- if( THREADS_FOUND )
- list(APPEND PASTIX_EXTRA_LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
- endif ()
-
-
-
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect libm")
- endif()
- set(PASTIX_M_LIBRARIES "")
- if(UNIX OR WIN32)
- find_library(
- PASTIX_M_m_LIBRARY
- NAMES m
- )
- mark_as_advanced(PASTIX_M_m_LIBRARY)
- if (PASTIX_M_m_LIBRARY)
- list(APPEND PASTIX_M_LIBRARIES "${PASTIX_M_m_LIBRARY}")
- list(APPEND PASTIX_EXTRA_LIBRARIES "${PASTIX_M_m_LIBRARY}")
- else()
- if (PASTIX_FIND_REQUIRED)
- message(FATAL_ERROR "Could NOT find libm on your system."
- "Are you sure to a have a C compiler installed?")
- endif()
- endif()
- endif()
-
-
-
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect librt")
- endif()
- set(PASTIX_RT_LIBRARIES "")
- if(UNIX AND NOT APPLE)
- find_library(
- PASTIX_RT_rt_LIBRARY
- NAMES rt
- )
- mark_as_advanced(PASTIX_RT_rt_LIBRARY)
- if (PASTIX_RT_rt_LIBRARY)
- list(APPEND PASTIX_RT_LIBRARIES "${PASTIX_RT_rt_LIBRARY}")
- list(APPEND PASTIX_EXTRA_LIBRARIES "${PASTIX_RT_rt_LIBRARY}")
- else()
- if (PASTIX_FIND_REQUIRED)
- message(FATAL_ERROR "Could NOT find librt on your system")
- endif()
- endif()
- endif()
-
-
-
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect HWLOC")
- endif()
- if (PASTIX_FIND_REQUIRED)
- find_package(HWLOC REQUIRED QUIET)
- else()
- find_package(HWLOC QUIET)
- endif()
-
-
-
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect BLAS")
- endif()
- if (PASTIX_FIND_REQUIRED)
- find_package(BLASEXT REQUIRED QUIET)
- else()
- find_package(BLASEXT QUIET)
- endif()
-
-
-
-
-
-
- if (NOT MPI_FOUND AND PASTIX_LOOK_FOR_MPI)
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect MPI")
- endif()
-
-
-
- if(NOT MPI_C_COMPILER)
- set(MPI_C_COMPILER mpicc)
- endif()
- if (PASTIX_FIND_REQUIRED AND PASTIX_FIND_REQUIRED_MPI)
- find_package(MPI REQUIRED QUIET)
- else()
- find_package(MPI QUIET)
- endif()
- if (MPI_FOUND)
- mark_as_advanced(MPI_LIBRARY)
- mark_as_advanced(MPI_EXTRA_LIBRARY)
- endif()
- endif (NOT MPI_FOUND AND PASTIX_LOOK_FOR_MPI)
-
-
-
- if( NOT STARPU_FOUND AND PASTIX_LOOK_FOR_STARPU)
-
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect StarPU")
- endif()
-
- set(PASTIX_STARPU_VERSION "1.1" CACHE STRING "oldest STARPU version desired")
-
-
-
- set(STARPU_COMPONENT_LIST "HWLOC")
-
-
-
-
-
- if (PASTIX_LOOK_FOR_MPI)
- if(NOT MPI_C_COMPILER)
- set(MPI_C_COMPILER mpicc)
- endif()
- list(APPEND STARPU_COMPONENT_LIST "MPI")
- endif()
- if (PASTIX_LOOK_FOR_STARPU_CUDA)
- list(APPEND STARPU_COMPONENT_LIST "CUDA")
- endif()
- if (PASTIX_LOOK_FOR_STARPU_FXT)
- list(APPEND STARPU_COMPONENT_LIST "FXT")
- endif()
-
- if (PASTIX_FIND_REQUIRED AND PASTIX_FIND_REQUIRED_STARPU)
- find_package(STARPU ${PASTIX_STARPU_VERSION} REQUIRED
- COMPONENTS ${STARPU_COMPONENT_LIST})
- else()
- find_package(STARPU ${PASTIX_STARPU_VERSION}
- COMPONENTS ${STARPU_COMPONENT_LIST})
- endif()
-
- endif( NOT STARPU_FOUND AND PASTIX_LOOK_FOR_STARPU)
-
-
-
- if (NOT SCOTCH_FOUND AND PASTIX_LOOK_FOR_SCOTCH)
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect SCOTCH")
- endif()
- if (PASTIX_FIND_REQUIRED AND PASTIX_FIND_REQUIRED_SCOTCH)
- find_package(SCOTCH REQUIRED QUIET)
- else()
- find_package(SCOTCH QUIET)
- endif()
- endif()
-
-
-
- if (NOT PTSCOTCH_FOUND AND PASTIX_LOOK_FOR_PTSCOTCH)
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect PTSCOTCH")
- endif()
- if (PASTIX_FIND_REQUIRED AND PASTIX_FIND_REQUIRED_PTSCOTCH)
- find_package(PTSCOTCH REQUIRED QUIET)
- else()
- find_package(PTSCOTCH QUIET)
- endif()
- endif()
-
-
-
- if (NOT METIS_FOUND AND PASTIX_LOOK_FOR_METIS)
- if (NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX - Try to detect METIS")
- endif()
- if (PASTIX_FIND_REQUIRED AND PASTIX_FIND_REQUIRED_METIS)
- find_package(METIS REQUIRED QUIET)
- else()
- find_package(METIS QUIET)
- endif()
- endif()
-
-
- if (PASTIX_FIND_REQUIRED AND NOT SCOTCH_FOUND AND NOT PTSCOTCH_FOUND AND NOT METIS_FOUND)
- message(FATAL_ERROR "Could NOT find any partitioning library on your system"
- " (install scotch, ptscotch or metis)")
- endif()
-
-
-
-
-
-
-
-
-
-
- unset(_inc_env)
- set(ENV_PASTIX_DIR "$ENV{PASTIX_DIR}")
- set(ENV_PASTIX_INCDIR "$ENV{PASTIX_INCDIR}")
- if(ENV_PASTIX_INCDIR)
- list(APPEND _inc_env "${ENV_PASTIX_INCDIR}")
- elseif(ENV_PASTIX_DIR)
- list(APPEND _inc_env "${ENV_PASTIX_DIR}")
- list(APPEND _inc_env "${ENV_PASTIX_DIR}/include")
- list(APPEND _inc_env "${ENV_PASTIX_DIR}/include/pastix")
- else()
- if(WIN32)
- string(REPLACE ":" ";" _inc_env "$ENV{INCLUDE}")
- else()
- string(REPLACE ":" ";" _path_env "$ENV{INCLUDE}")
- list(APPEND _inc_env "${_path_env}")
- string(REPLACE ":" ";" _path_env "$ENV{C_INCLUDE_PATH}")
- list(APPEND _inc_env "${_path_env}")
- string(REPLACE ":" ";" _path_env "$ENV{CPATH}")
- list(APPEND _inc_env "${_path_env}")
- string(REPLACE ":" ";" _path_env "$ENV{INCLUDE_PATH}")
- list(APPEND _inc_env "${_path_env}")
- endif()
- endif()
- list(APPEND _inc_env "${CMAKE_PLATFORM_IMPLICIT_INCLUDE_DIRECTORIES}")
- list(APPEND _inc_env "${CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES}")
- list(REMOVE_DUPLICATES _inc_env)
-
-
-
-
-
- if(PASTIX_INCDIR)
- set(PASTIX_pastix.h_DIRS "PASTIX_pastix.h_DIRS-NOTFOUND")
- find_path(PASTIX_pastix.h_DIRS
- NAMES pastix.h
- HINTS ${PASTIX_INCDIR})
- else()
- if(PASTIX_DIR)
- set(PASTIX_pastix.h_DIRS "PASTIX_pastix.h_DIRS-NOTFOUND")
- find_path(PASTIX_pastix.h_DIRS
- NAMES pastix.h
- HINTS ${PASTIX_DIR}
- PATH_SUFFIXES "include" "include/pastix")
- else()
- set(PASTIX_pastix.h_DIRS "PASTIX_pastix.h_DIRS-NOTFOUND")
- find_path(PASTIX_pastix.h_DIRS
- NAMES pastix.h
- HINTS ${_inc_env}
- PATH_SUFFIXES "pastix")
- endif()
- endif()
- mark_as_advanced(PASTIX_pastix.h_DIRS)
-
-
-
- if (PASTIX_pastix.h_DIRS)
- set(PASTIX_INCLUDE_DIRS "${PASTIX_pastix.h_DIRS}")
- else ()
- set(PASTIX_INCLUDE_DIRS "PASTIX_INCLUDE_DIRS-NOTFOUND")
- if(NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for pastix -- pastix.h not found")
- endif()
- endif()
-
-
-
-
-
-
-
- unset(_lib_env)
- set(ENV_PASTIX_LIBDIR "$ENV{PASTIX_LIBDIR}")
- if(ENV_PASTIX_LIBDIR)
- list(APPEND _lib_env "${ENV_PASTIX_LIBDIR}")
- elseif(ENV_PASTIX_DIR)
- list(APPEND _lib_env "${ENV_PASTIX_DIR}")
- list(APPEND _lib_env "${ENV_PASTIX_DIR}/lib")
- else()
- if(WIN32)
- string(REPLACE ":" ";" _lib_env "$ENV{LIB}")
- else()
- if(APPLE)
- string(REPLACE ":" ";" _lib_env "$ENV{DYLD_LIBRARY_PATH}")
- else()
- string(REPLACE ":" ";" _lib_env "$ENV{LD_LIBRARY_PATH}")
- endif()
- list(APPEND _lib_env "${CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES}")
- list(APPEND _lib_env "${CMAKE_C_IMPLICIT_LINK_DIRECTORIES}")
- endif()
- endif()
- list(REMOVE_DUPLICATES _lib_env)
-
-
-
-
-
- set(PASTIX_libs_to_find "pastix_murge;pastix")
-
-
- if(PASTIX_LIBDIR)
- foreach(pastix_lib ${PASTIX_libs_to_find})
- set(PASTIX_${pastix_lib}_LIBRARY "PASTIX_${pastix_lib}_LIBRARY-NOTFOUND")
- find_library(PASTIX_${pastix_lib}_LIBRARY
- NAMES ${pastix_lib}
- HINTS ${PASTIX_LIBDIR})
- endforeach()
- else()
- if(PASTIX_DIR)
- foreach(pastix_lib ${PASTIX_libs_to_find})
- set(PASTIX_${pastix_lib}_LIBRARY "PASTIX_${pastix_lib}_LIBRARY-NOTFOUND")
- find_library(PASTIX_${pastix_lib}_LIBRARY
- NAMES ${pastix_lib}
- HINTS ${PASTIX_DIR}
- PATH_SUFFIXES lib lib32 lib64)
- endforeach()
- else()
- foreach(pastix_lib ${PASTIX_libs_to_find})
- set(PASTIX_${pastix_lib}_LIBRARY "PASTIX_${pastix_lib}_LIBRARY-NOTFOUND")
- find_library(PASTIX_${pastix_lib}_LIBRARY
- NAMES ${pastix_lib}
- HINTS ${_lib_env})
- endforeach()
- endif()
- endif()
-
-
-
- foreach(pastix_lib ${PASTIX_libs_to_find})
-
- get_filename_component(${pastix_lib}_lib_path ${PASTIX_${pastix_lib}_LIBRARY} PATH)
-
- if (PASTIX_LIBRARIES)
- list(APPEND PASTIX_LIBRARIES "${PASTIX_${pastix_lib}_LIBRARY}")
- else()
- set(PASTIX_LIBRARIES "${PASTIX_${pastix_lib}_LIBRARY}")
- endif()
- if (PASTIX_LIBRARY_DIRS)
- list(APPEND PASTIX_LIBRARY_DIRS "${${pastix_lib}_lib_path}")
- else()
- set(PASTIX_LIBRARY_DIRS "${${pastix_lib}_lib_path}")
- endif()
- mark_as_advanced(PASTIX_${pastix_lib}_LIBRARY)
-
- endforeach(pastix_lib ${PASTIX_libs_to_find})
-
-
- if(PASTIX_LIBRARIES)
-
- set(REQUIRED_LDFLAGS)
- set(REQUIRED_INCDIRS)
- set(REQUIRED_LIBDIRS)
- set(REQUIRED_LIBS)
-
-
- if (PASTIX_INCLUDE_DIRS)
- set(REQUIRED_INCDIRS "${PASTIX_INCLUDE_DIRS}")
- endif()
- foreach(libdir ${PASTIX_LIBRARY_DIRS})
- if (libdir)
- list(APPEND REQUIRED_LIBDIRS "${libdir}")
- endif()
- endforeach()
- set(REQUIRED_LIBS "${PASTIX_LIBRARIES}")
-
- if (PASTIX_LOOK_FOR_STARPU AND STARPU_FOUND)
- if (STARPU_INCLUDE_DIRS_DEP)
- list(APPEND REQUIRED_INCDIRS "${STARPU_INCLUDE_DIRS_DEP}")
- elseif (STARPU_INCLUDE_DIRS)
- list(APPEND REQUIRED_INCDIRS "${STARPU_INCLUDE_DIRS}")
- endif()
- if(STARPU_LIBRARY_DIRS_DEP)
- list(APPEND REQUIRED_LIBDIRS "${STARPU_LIBRARY_DIRS_DEP}")
- elseif(STARPU_LIBRARY_DIRS)
- list(APPEND REQUIRED_LIBDIRS "${STARPU_LIBRARY_DIRS}")
- endif()
- if (STARPU_LIBRARIES_DEP)
- list(APPEND REQUIRED_LIBS "${STARPU_LIBRARIES_DEP}")
- elseif (STARPU_LIBRARIES)
- foreach(lib ${STARPU_LIBRARIES})
- if (EXISTS ${lib} OR ${lib} MATCHES "^-")
- list(APPEND REQUIRED_LIBS "${lib}")
- else()
- list(APPEND REQUIRED_LIBS "-l${lib}")
- endif()
- endforeach()
- endif()
- endif()
-
- if (PASTIX_LOOK_FOR_STARPU_CUDA AND CUDA_FOUND)
- if (CUDA_INCLUDE_DIRS)
- list(APPEND REQUIRED_INCDIRS "${CUDA_INCLUDE_DIRS}")
- endif()
- foreach(libdir ${CUDA_LIBRARY_DIRS})
- if (libdir)
- list(APPEND REQUIRED_LIBDIRS "${libdir}")
- endif()
- endforeach()
- list(APPEND REQUIRED_LIBS "${CUDA_CUBLAS_LIBRARIES};${CUDA_LIBRARIES}")
- endif()
-
- if (PASTIX_LOOK_FOR_MPI AND MPI_FOUND)
- if (MPI_C_INCLUDE_PATH)
- list(APPEND REQUIRED_INCDIRS "${MPI_C_INCLUDE_PATH}")
- endif()
- if (MPI_C_LINK_FLAGS)
- if (${MPI_C_LINK_FLAGS} MATCHES " -")
- string(REGEX REPLACE " -" "-" MPI_C_LINK_FLAGS ${MPI_C_LINK_FLAGS})
- endif()
- list(APPEND REQUIRED_LDFLAGS "${MPI_C_LINK_FLAGS}")
- endif()
- list(APPEND REQUIRED_LIBS "${MPI_C_LIBRARIES}")
- endif()
-
- if (HWLOC_FOUND)
- if (HWLOC_INCLUDE_DIRS)
- list(APPEND REQUIRED_INCDIRS "${HWLOC_INCLUDE_DIRS}")
- endif()
- foreach(libdir ${HWLOC_LIBRARY_DIRS})
- if (libdir)
- list(APPEND REQUIRED_LIBDIRS "${libdir}")
- endif()
- endforeach()
- foreach(lib ${HWLOC_LIBRARIES})
- if (EXISTS ${lib} OR ${lib} MATCHES "^-")
- list(APPEND REQUIRED_LIBS "${lib}")
- else()
- list(APPEND REQUIRED_LIBS "-l${lib}")
- endif()
- endforeach()
- endif()
-
- if (BLAS_FOUND)
- if (BLAS_INCLUDE_DIRS)
- list(APPEND REQUIRED_INCDIRS "${BLAS_INCLUDE_DIRS}")
- endif()
- foreach(libdir ${BLAS_LIBRARY_DIRS})
- if (libdir)
- list(APPEND REQUIRED_LIBDIRS "${libdir}")
- endif()
- endforeach()
- list(APPEND REQUIRED_LIBS "${BLAS_LIBRARIES}")
- if (BLAS_LINKER_FLAGS)
- list(APPEND REQUIRED_LDFLAGS "${BLAS_LINKER_FLAGS}")
- endif()
- endif()
-
- if (PASTIX_LOOK_FOR_SCOTCH AND SCOTCH_FOUND)
- if (SCOTCH_INCLUDE_DIRS)
- list(APPEND REQUIRED_INCDIRS "${SCOTCH_INCLUDE_DIRS}")
- endif()
- foreach(libdir ${SCOTCH_LIBRARY_DIRS})
- if (libdir)
- list(APPEND REQUIRED_LIBDIRS "${libdir}")
- endif()
- endforeach()
- list(APPEND REQUIRED_LIBS "${SCOTCH_LIBRARIES}")
- endif()
-
- if (PASTIX_LOOK_FOR_PTSCOTCH AND PTSCOTCH_FOUND)
- if (PTSCOTCH_INCLUDE_DIRS)
- list(APPEND REQUIRED_INCDIRS "${PTSCOTCH_INCLUDE_DIRS}")
- endif()
- foreach(libdir ${PTSCOTCH_LIBRARY_DIRS})
- if (libdir)
- list(APPEND REQUIRED_LIBDIRS "${libdir}")
- endif()
- endforeach()
- list(APPEND REQUIRED_LIBS "${PTSCOTCH_LIBRARIES}")
- endif()
-
- if (PASTIX_LOOK_FOR_METIS AND METIS_FOUND)
- if (METIS_INCLUDE_DIRS)
- list(APPEND REQUIRED_INCDIRS "${METIS_INCLUDE_DIRS}")
- endif()
- foreach(libdir ${METIS_LIBRARY_DIRS})
- if (libdir)
- list(APPEND REQUIRED_LIBDIRS "${libdir}")
- endif()
- endforeach()
- list(APPEND REQUIRED_LIBS "${METIS_LIBRARIES}")
- endif()
-
- if (CMAKE_C_COMPILER_ID MATCHES "GNU")
- find_library(
- FORTRAN_gfortran_LIBRARY
- NAMES gfortran
- HINTS ${_lib_env}
- )
- mark_as_advanced(FORTRAN_gfortran_LIBRARY)
- if (FORTRAN_gfortran_LIBRARY)
- list(APPEND REQUIRED_LIBS "${FORTRAN_gfortran_LIBRARY}")
- endif()
- elseif (CMAKE_C_COMPILER_ID MATCHES "Intel")
- find_library(
- FORTRAN_ifcore_LIBRARY
- NAMES ifcore
- HINTS ${_lib_env}
- )
- mark_as_advanced(FORTRAN_ifcore_LIBRARY)
- if (FORTRAN_ifcore_LIBRARY)
- list(APPEND REQUIRED_LIBS "${FORTRAN_ifcore_LIBRARY}")
- endif()
- endif()
-
- list(APPEND REQUIRED_LIBS ${PASTIX_EXTRA_LIBRARIES})
-
-
- set(CMAKE_REQUIRED_INCLUDES "${REQUIRED_INCDIRS}")
- set(CMAKE_REQUIRED_LIBRARIES)
- list(APPEND CMAKE_REQUIRED_LIBRARIES "${REQUIRED_LDFLAGS}")
- foreach(lib_dir ${REQUIRED_LIBDIRS})
- list(APPEND CMAKE_REQUIRED_LIBRARIES "-L${lib_dir}")
- endforeach()
- list(APPEND CMAKE_REQUIRED_LIBRARIES "${REQUIRED_LIBS}")
- list(APPEND CMAKE_REQUIRED_FLAGS "${REQUIRED_FLAGS}")
- string(REGEX REPLACE "^ -" "-" CMAKE_REQUIRED_LIBRARIES "${CMAKE_REQUIRED_LIBRARIES}")
-
-
- unset(PASTIX_WORKS CACHE)
- include(CheckFunctionExists)
- check_function_exists(pastix PASTIX_WORKS)
- mark_as_advanced(PASTIX_WORKS)
-
- if(PASTIX_WORKS)
-
- set(PASTIX_LIBRARIES_DEP "${REQUIRED_LIBS}")
- set(PASTIX_LIBRARY_DIRS_DEP "${REQUIRED_LIBDIRS}")
- set(PASTIX_INCLUDE_DIRS_DEP "${REQUIRED_INCDIRS}")
- set(PASTIX_LINKER_FLAGS "${REQUIRED_LDFLAGS}")
- list(REMOVE_DUPLICATES PASTIX_LIBRARY_DIRS_DEP)
- list(REMOVE_DUPLICATES PASTIX_INCLUDE_DIRS_DEP)
- list(REMOVE_DUPLICATES PASTIX_LINKER_FLAGS)
- else()
- if(NOT PASTIX_FIND_QUIETLY)
- message(STATUS "Looking for PASTIX : test of pastix() fails")
- message(STATUS "CMAKE_REQUIRED_LIBRARIES: ${CMAKE_REQUIRED_LIBRARIES}")
- message(STATUS "CMAKE_REQUIRED_INCLUDES: ${CMAKE_REQUIRED_INCLUDES}")
- message(STATUS "Check in CMakeFiles/CMakeError.log to figure out why it fails")
- message(STATUS "Maybe PASTIX is linked with specific libraries. "
- "Have you tried with COMPONENTS (MPI/SEQ, STARPU, STARPU_CUDA, SCOTCH, PTSCOTCH, METIS)? "
- "See the explanation in FindPASTIX.cmake.")
- endif()
- endif()
- set(CMAKE_REQUIRED_INCLUDES)
- set(CMAKE_REQUIRED_FLAGS)
- set(CMAKE_REQUIRED_LIBRARIES)
- endif(PASTIX_LIBRARIES)
-
- if (PASTIX_LIBRARIES)
- list(GET PASTIX_LIBRARIES 0 first_lib)
- get_filename_component(first_lib_path "${first_lib}" PATH)
- if (${first_lib_path} MATCHES "/lib(32|64)?$")
- string(REGEX REPLACE "/lib(32|64)?$" "" not_cached_dir "${first_lib_path}")
- set(PASTIX_DIR_FOUND "${not_cached_dir}" CACHE PATH "Installation directory of PASTIX library" FORCE)
- else()
- set(PASTIX_DIR_FOUND "${first_lib_path}" CACHE PATH "Installation directory of PASTIX library" FORCE)
- endif()
- endif()
- mark_as_advanced(PASTIX_DIR)
- mark_as_advanced(PASTIX_DIR_FOUND)
-
-
-
- include(FindPackageHandleStandardArgs)
- find_package_handle_standard_args(PASTIX DEFAULT_MSG
- PASTIX_LIBRARIES
- PASTIX_WORKS)
|