mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 06:05:29 -04:00
* More work on cmake * Fix funky libxsmm library order * Fix naming conventions * fix namespace name * Fix libxc include (#6) * Fix cosma * make pretty * Add MPI08 support. Minor cleanups --------- Co-authored-by: Rocco Meli <r.meli@bluemail.ch>
87 lines
3.8 KiB
CMake
87 lines
3.8 KiB
CMake
#!-------------------------------------------------------------------------------------------------!
|
|
#! CP2K: A general program to perform molecular dynamics simulations !
|
|
#! Copyright 2000-2023 CP2K developers group <https://cp2k.org> !
|
|
#! !
|
|
#! SPDX-License-Identifier: GPL-2.0-or-later !
|
|
#!-------------------------------------------------------------------------------------------------!
|
|
|
|
# Copyright (c) 2022- ETH Zurich
|
|
#
|
|
# authors : Mathieu Taillefumier
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
include(cp2k_utils)
|
|
|
|
cp2k_set_default_paths(SCALAPACK "SCALAPACK")
|
|
|
|
# check if we have mkl as blas library or not and pick the scalapack from mkl
|
|
# distro if found
|
|
|
|
if(CP2K_SCALAPACK_VENDOR STREQUAL "GENERIC")
|
|
if(TARGET CP2K::BLAS::MKL::scalapack_link)
|
|
message("-----------------------------------------------------------------")
|
|
message("- FindScalapack warning -")
|
|
message("-----------------------------------------------------------------")
|
|
message(" ")
|
|
message(
|
|
WARNING
|
|
"You may want to use mkl implementation of scalapack. To do this add -DCP2K_SCALAPACK_VENDOR=MKL to the cmake command line"
|
|
)
|
|
endif()
|
|
|
|
if(TARGET CP2K::BLAS::SCI::scalapack_link)
|
|
message("-----------------------------------------------------------------")
|
|
message("- FindScalapack warning -")
|
|
message("-----------------------------------------------------------------")
|
|
message(" ")
|
|
message(
|
|
WARNING
|
|
"You may want to use Cray implementation of scalapack. To do this add -DCP2K_SCALAPACK_VENDOR=SCI to the cmake command line"
|
|
)
|
|
message(" ")
|
|
message(" ")
|
|
endif()
|
|
|
|
# try to detect location with pkgconfig
|
|
find_package(PkgConfig QUIET)
|
|
if(PKG_CONFIG_FOUND)
|
|
pkg_check_modules(CP2K_SCALAPACK IMPORTED_TARGET GLOBAL "scalapack")
|
|
endif()
|
|
|
|
# this should be enough for detecting scalapack compiled by hand. If scalapack
|
|
# is vendor specific then we sahould have a target blas::scalapack available.
|
|
# it removes the problem of modifying too many files when we add a vendor
|
|
# specific blas/lapack/scalapack implementation
|
|
|
|
if(NOT CP2K_SCALAPACK_FOUND)
|
|
cp2k_find_libraries(SCALAPACK "scalapack")
|
|
endif()
|
|
elseif(TARGET CP2K::BLAS::MKL::scalapack_link)
|
|
# we have mkl check for the different mkl target
|
|
get_target_property(CP2K_SCALAPACK_LINK_LIBRARIES
|
|
CP2K::BLAS::MKL::scalapack_link INTERFACE_LINK_LIBRARIES)
|
|
set(CP2K_SCALAPACK_FOUND yes)
|
|
elseif(TARGET CP2K::BLAS::SCI::scalapack_link)
|
|
# we have mkl check for the different mkl target
|
|
get_target_property(CP2K_SCALAPACK_LINK_LIBRARIES
|
|
CP2K::BLAS::SCI::scalapack_link INTERFACE_LINK_LIBRARIES)
|
|
set(CP2K_SCALAPACK_FOUND yes)
|
|
endif()
|
|
|
|
# check if found
|
|
find_package_handle_standard_args(SCALAPACK
|
|
REQUIRED_VARS CP2K_SCALAPACK_LINK_LIBRARIES)
|
|
# prevent clutter in cache
|
|
|
|
# add target to link against
|
|
if(CP2K_SCALAPACK_FOUND)
|
|
|
|
if(NOT TARGET CP2K::SCALAPACK::scalapack)
|
|
add_library(CP2K::SCALAPACK::scalapack INTERFACE IMPORTED)
|
|
endif()
|
|
|
|
set_property(
|
|
TARGET CP2K::SCALAPACK::scalapack PROPERTY INTERFACE_LINK_LIBRARIES
|
|
${CP2K_SCALAPACK_LINK_LIBRARIES})
|
|
endif()
|
|
mark_as_advanced(CP2K_SCALAPACK_FOUND CP2K_SCALAPACK_LINK_LIBRARIES)
|