2013-08-02 14:07:33 +02:00
###########################################################################
# #
# Note: The bulk of the build system is located in the cmake/ directory. #
# This file only contains the specializations for this particular #
# project. Most likely you are interested in editing one of these #
# files instead: #
# #
# dune.module Name and version number #
# CMakeLists_files.cmake Path of source files #
# cmake/Modules/${project}-prereqs.cmake Dependencies #
# #
###########################################################################
2013-05-15 10:40:00 +02:00
2017-09-15 11:17:40 +02:00
# Mandatory call to project
2019-12-03 14:10:21 +01:00
2017-12-19 12:44:24 +01:00
project ( opm-simulators C CXX )
2017-09-15 11:17:40 +02:00
2021-03-26 09:36:18 +01:00
cmake_minimum_required ( VERSION 3.10 )
2013-05-15 10:40:00 +02:00
2019-12-03 14:10:21 +01:00
2015-05-27 11:51:28 +02:00
option ( SIBLING_SEARCH "Search for other modules in sibling directories?" ON )
2015-10-19 15:21:08 +02:00
set ( USE_OPENMP_DEFAULT OFF ) # Use of OpenMP is considered experimental
2019-03-06 11:54:21 +01:00
option ( BUILD_FLOW "Build the production oriented flow simulator?" ON )
2020-02-07 14:36:22 +01:00
option ( BUILD_FLOW_BLACKOIL_ONLY "Build the production oriented flow simulator only supporting the blackoil model?" OFF )
2019-10-11 08:46:17 +02:00
option ( BUILD_FLOW_VARIANTS "Build the variants for flow by default?" OFF )
2019-03-07 12:45:15 +01:00
option ( BUILD_EBOS "Build the research oriented ebos simulator?" ON )
option ( BUILD_EBOS_EXTENSIONS "Build the variants for various extensions of ebos by default?" OFF )
2019-03-11 16:50:47 +01:00
option ( BUILD_EBOS_DEBUG_EXTENSIONS "Build the ebos variants which are purely for debugging by default?" OFF )
2020-11-10 08:54:44 +01:00
option ( BUILD_FLOW_POLY_GRID "Build flow blackoil with polyhedral grid" OFF )
2020-11-18 09:42:39 +01:00
option ( OPM_ENABLE_PYTHON "Enable python bindings?" OFF )
option ( OPM_ENABLE_PYTHON_TESTS "Enable tests for the python bindings?" ON )
2021-01-15 14:13:18 +01:00
option ( ENABLE_FPGA "Enable FPGA kernels integration?" OFF )
2020-01-13 15:46:50 +01:00
2017-09-25 12:24:15 +02:00
if ( SIBLING_SEARCH AND NOT opm-common_DIR )
# guess the sibling dir
get_filename_component ( _leaf_dir_name ${ PROJECT_BINARY_DIR } NAME )
get_filename_component ( _parent_full_dir ${ PROJECT_BINARY_DIR } DIRECTORY )
get_filename_component ( _parent_dir_name ${ _parent_full_dir } NAME )
#Try if <module-name>/<build-dir> is used
get_filename_component ( _modules_dir ${ _parent_full_dir } DIRECTORY )
if ( IS_DIRECTORY ${ _modules_dir } /opm-common/ ${ _leaf_dir_name } )
set ( opm-common_DIR ${ _modules_dir } /opm-common/ ${ _leaf_dir_name } )
2017-09-15 11:34:22 +02:00
else ()
2017-09-25 12:24:15 +02:00
string ( REPLACE ${ PROJECT_NAME } opm-common _opm_common_leaf ${ _leaf_dir_name } )
if ( NOT _leaf_dir_name STREQUAL _opm_common_leaf
AND IS_DIRECTORY ${ _parent_full_dir } / ${ _opm_common_leaf } )
# We are using build directories named <prefix><module-name><postfix>
set ( opm-common_DIR ${ _parent_full_dir } / ${ _opm_common_leaf } )
elseif ( IS_DIRECTORY ${ _parent_full_dir } /opm-common )
# All modules are in a common build dir
2018-02-05 11:38:07 +01:00
set ( opm-common_DIR "${_parent_full_dir}/opm-common" )
2017-09-15 11:34:22 +02:00
endif ()
2017-09-25 12:24:15 +02:00
endif ()
2017-09-26 16:16:41 +02:00
endif ()
if ( opm-common_DIR AND NOT IS_DIRECTORY ${ opm-common_DIR } )
message ( WARNING "Value ${opm-common_DIR} passed to variable"
" opm-common_DIR is not a directory" )
2017-09-25 12:24:15 +02:00
endif ()
2015-03-18 14:26:29 +01:00
2017-09-25 12:24:15 +02:00
find_package ( opm-common REQUIRED )
2015-03-18 14:26:29 +01:00
2017-09-25 12:24:15 +02:00
include ( OpmInit )
2020-04-02 20:31:54 +02:00
OpmSetPolicies ()
2015-10-21 17:35:44 +02:00
2013-08-02 14:07:33 +02:00
# not the same location as most of the other projects? this hook overrides
macro ( dir_hook )
endmacro ( dir_hook )
2013-05-15 10:40:00 +02:00
2013-08-02 14:07:33 +02:00
# project information is in dune.module. Read this file and set variables.
# we cannot generate dune.module since it is read by dunecontrol before
# the build starts, so it makes sense to keep the data there then.
include ( OpmInit )
2013-05-15 10:40:00 +02:00
2018-03-12 15:37:21 +01:00
# Look for the opm-tests repository; if found the variable
# HAVE_OPM_TESTS will be set to true.
include ( Findopm-tests )
2015-10-21 17:35:44 +02:00
2013-08-02 14:07:33 +02:00
# list of prerequisites for this particular project; this is in a
# separate file (in cmake/Modules sub-directory) because it is shared
# with the find module
2015-05-15 15:43:03 +02:00
include ( "${project}-prereqs" )
2013-05-15 10:40:00 +02:00
2020-04-02 20:30:20 +02:00
# Make sure we are using the same compiler underneath
# NVCC as for the rest. In the case that NVCC does not support
# that compiler it will error out. Unfortunately this will only
2020-04-29 13:28:23 +02:00
# work for CMake >= 3.8. We found no way to make FindCUDA.cmake error
2020-04-02 20:30:20 +02:00
# out. It seems to ignore CMAKE_NVCC_FLAGS and CMAKE. Additionally
# our way of specifying cuda source files never worked for CMake
# version < 3.8. Hence we deactivate cuda for these versions.
# We use "CMAKE_VERSION VERSION_GREATER 3.7.9" instead of
# CMAKE_VERSION VERSION_GREATER_EQUAL 3.8, because of backwards
# compatibility to cmake 3.6 and lower.
if ( NOT CMAKE_DISABLE_FIND_PACKAGE_CUDA AND
CMAKE_VERSION VERSION_GREATER 3.7.9 )
2020-04-27 22:01:46 +02:00
if ( CMAKE_BUILD_TYPE )
set ( _flags_suffix "_${CMAKE_BUILD_TYPE}" )
endif ()
2020-04-29 13:27:04 +02:00
if ( NOT DEFINED ENV{CUDAHOSTCXX} AND NOT DEFINED CMAKE_CUDA_HOST_COMPILER AND
2020-04-27 22:01:46 +02:00
( NOT CMAKE_CUDA_FLAGS ${ _flags_suffix } OR NOT CMAKE_CUDA_FLAGS ${ _flags_suffix } MATCHES ".*-ccbin .*" ))
2020-04-29 13:27:04 +02:00
message ( STATUS "Setting CUDA host compiler CMAKE_CUDA_HOST_COMPILER to ${CMAKE_CXX_COMPILER} to "
2020-04-27 14:54:08 +02:00
"prevent incompatibilities. Note that this might report that there "
"is not CUDA compiler if your system's CUDA compiler does not support "
"${CMAKE_CXX_COMPILER}." )
2020-04-29 13:28:23 +02:00
# check_language does not seem to care about ${CMAKE_CUDA_FLAGS} or $(CUDA_NVCC_FLAGS}.
# Hence we set CMAKE_CUDA_HOST_COMPILER to our C++ compiler.
# In check_language(CUDA) we will get an error if we in addition put
# "-ccbin ${CMAKE_CXX_COMPILER}" into CMAKE_CUDA_FLAGS. It results
2020-04-27 21:52:41 +02:00
# in "${NVCC} -ccbin=${CMAKE_CXX_COMPILER} -ccbin ${CMAKE_CXX_COMPILER}"
2020-04-29 13:28:23 +02:00
# which causes nvcc to abort
2020-04-29 13:27:04 +02:00
set ( CMAKE_CUDA_HOST_COMPILER ${ CMAKE_CXX_COMPILER } )
2020-04-29 13:58:48 +02:00
set ( ENV{CUDAHOSTCXX} ${ CMAKE_CUDA_HOST_COMPILER } ) # The only thing honored by check_language(CUDA)!
2020-04-02 20:30:20 +02:00
endif ()
include ( CheckLanguage )
check_language ( CUDA )
if ( CMAKE_CUDA_COMPILER )
2020-04-29 13:28:23 +02:00
# OPTIONAL is ignored. Hence the magic above to check whether enabling CUDA works
2020-04-02 20:30:20 +02:00
enable_language ( CUDA OPTIONAL )
2020-04-27 14:54:08 +02:00
# While the documentation says that it is deprecated, FindCUDA seems the
# only easy way to determine the cublas and cusparse libraries.
# Hence we call it unconditionally
# The WellContributions kernel uses __shfl_down_sync, which was introduced in CUDA 9.0
find_package ( CUDA )
2020-04-02 20:30:20 +02:00
endif ()
2020-04-15 14:21:36 +02:00
if ( CUDA_FOUND AND CUDA_VERSION VERSION_LESS "9.0" )
2020-04-02 20:30:20 +02:00
set ( CUDA_FOUND OFF )
message ( WARNING "Deactivating CUDA as we require version 9.0 or newer."
" Found only CUDA version ${CUDA_VERSION}." )
endif ()
endif ()
if ( CUDA_FOUND )
set ( HAVE_CUDA 1 )
include_directories ( ${ CUDA_INCLUDE_DIRS } )
endif ()
2020-06-22 18:26:49 +02:00
find_package ( OpenCL )
2020-12-22 12:57:01 +01:00
# include FPGA target only when ENABLE_FPGA is set to ON
if ( ENABLE_FPGA )
# must include opencl.h which is a wrapper for all the OpenCL extensions
find_file ( OPENCL_H CL/opencl.h HINTS ${ OpenCL_INCLUDE_DIRS } )
# FIXME: devise a check for the presence of the "FPGA" module; currently looking for makefile in <opm-simulators>/../FPGA
find_file ( FPGA_MODULE linearalgebra/ilu0bicgstab/xilinx/alveo_u280/vitis_20192/OPM-integration/makefile HINTS ${ opm-simulators_SOURCE_DIR } /../FPGA )
# this code only runs if the user explicitly enabled the FPGA
# hence fatal_error instead of warning
if ( NOT OPENCL_H OR NOT OpenCL_FOUND )
set ( HAVE_FPGA 0 )
message ( FATAL_ERROR " OpenCL packages/headers were not found. Make sure CL/opencl.h exists or deactivate FPGA." )
elseif ( NOT FPGA_MODULE )
set ( HAVE_FPGA 0 )
message ( FATAL_ERROR " FPGA module was not found. Make sure FPGA repository exists or deactivate FPGA." )
elseif ( NOT DEFINED ENV{XILINX_XRT} )
# Xilinx XRT must be installed and properly setup
set ( HAVE_FPGA 0 )
message ( FATAL_ERROR " Xilinx XRT not found. Make sure it is installed and setup (check its documentation) or deactivate FPGA." )
else ()
set ( HAVE_FPGA 1 )
message ( STATUS "FPGA library and kernel integration active." )
# FIXME: set the correct path to the FPGA module
set ( FPGA_SOURCE_DIR ${ opm-simulators_SOURCE_DIR } /../FPGA )
# configuration variables with default values: they can be overridden on the cmake command line
# FPGA_PORTS_CONFIG selects the kernel's memory ports configuration; must be in sync with available kernel bitstream
if ( NOT FPGA_PORTS_CONFIG )
set ( FPGA_PORTS_CONFIG 2r_3r3w_ddr )
endif ()
# FPGA_DEBUG_LEVEL sets the debug messages level for FPGA library functions (should be set to 0 for Release build)
if ( NOT FPGA_DEBUG_LEVEL )
set ( FPGA_DEBUG_LEVEL 0 )
endif ()
message ( STATUS "Using the following settings for the FPGA library compilation: "
"FPGA_PORTS_CONFIG=${FPGA_PORTS_CONFIG}, "
"FPGA_DEBUG_LEVEL=${FPGA_DEBUG_LEVEL}" )
add_compile_options ( -DPORTS_CONFIG=PORTS_ ${ FPGA_PORTS_CONFIG } )
add_compile_options ( -DBDA_DEBUG_LEVEL= ${ FPGA_DEBUG_LEVEL } )
# include directories for the FPGA library
include_directories ( ${ FPGA_SOURCE_DIR } )
include_directories ( ${ FPGA_SOURCE_DIR } /linearalgebra/ilu0bicgstab/xilinx/src/sda_app )
include_directories ( ${ FPGA_SOURCE_DIR } /linearalgebra/ilu0bicgstab/xilinx/src/sda_app/common )
# add external project to compile the FPGA library
include ( ExternalProject )
ExternalProject_Add ( FPGA_library
# force the build step to always be run because source dependencies cannot be made explicit
BUILD_ALWAYS 1
DOWNLOAD_COMMAND ""
UPDATE_COMMAND ""
CONFIGURE_COMMAND ""
BUILD_COMMAND make
-f ${ FPGA_SOURCE_DIR } /linearalgebra/ilu0bicgstab/xilinx/alveo_u280/vitis_20192/OPM-integration/makefile
SRCDIR= ${ FPGA_SOURCE_DIR } /linearalgebra/ilu0bicgstab/xilinx/src/sda_app
PORTS_CONFIG= ${ FPGA_PORTS_CONFIG }
DEBUG_LEVEL= ${ FPGA_DEBUG_LEVEL }
INSTALL_COMMAND ""
TEST_COMMAND ""
)
endif ()
endif ()
2020-06-22 18:26:49 +02:00
if ( OpenCL_FOUND )
2020-06-25 18:44:49 +02:00
# the current OpenCL implementation relies on cl.hpp, not cl2.hpp
# make sure it is available, otherwise disable OpenCL
find_file ( CL_HPP CL/cl.hpp HINTS ${ OpenCL_INCLUDE_DIRS } )
if ( CL_HPP )
set ( HAVE_OPENCL 1 )
include_directories ( ${ OpenCL_INCLUDE_DIRS } )
else ()
message ( WARNING " OpenCL was found, but this version of opm-simulators relies on CL/cl.hpp, which implements OpenCL 1.0, 1.1 and 1.2.\n Deactivating OpenCL" )
set ( OpenCL_FOUND OFF )
2020-07-28 11:49:01 +02:00
set ( OPENCL_FOUND OFF )
2020-06-25 18:44:49 +02:00
endif ()
2020-06-22 18:26:49 +02:00
endif ()
2021-06-18 11:46:00 +02:00
find_package ( amgcl )
if ( amgcl_FOUND )
2021-06-02 16:19:00 +02:00
set ( HAVE_AMGCL 1 )
2021-06-18 19:40:46 +02:00
# Linking to target angcl::amgcl drags in OpenMP and -fopenmp as a compile
# flag. With that nvcc fails as it does not that flag.
2021-06-21 11:13:34 +02:00
# Hence we set AMGCL_INCLUDE_DIRS.
2021-06-18 19:40:46 +02:00
get_property ( AMGCL_INCLUDE_DIRS TARGET amgcl::amgcl PROPERTY INTERFACE_INCLUDE_DIRECTORIES )
2021-06-30 16:41:35 +02:00
include_directories ( SYSTEM ${ AMGCL_INCLUDE_DIRS } )
2021-06-02 16:19:00 +02:00
endif ()
2021-06-30 16:03:14 +02:00
if ( OpenCL_FOUND )
find_package ( VexCL )
if ( VexCL_FOUND )
set ( HAVE_VEXCL 1 )
# generator expressions in vexcl do not seem to work and therefore
# we cannot use the imported target. Hence we exract the needed info
# from the targets
get_property ( VEXCL_INCLUDE_DIRS TARGET VexCL::Common PROPERTY INTERFACE_INCLUDE_DIRECTORIES )
get_property ( VEXCL_LINK_LIBRARIES TARGET VexCL::Common PROPERTY INTERFACE_LINK_LIBRARIES )
get_property ( VEXCL_COMPILE_DEFINITIONS TARGET VexCL::OpenCL PROPERTY INTERFACE_COMPILE_DEFINITIONS )
set ( VEXCL_LINK_LIBRARIES "${VEXCL_LINK_LIBRARIES};OpenCL::OpenCL" )
add_library ( OPM::VexCL::OpenCL INTERFACE IMPORTED )
set_target_properties ( OPM::VexCL::OpenCL PROPERTIES
INTERFACE_COMPILE_DEFINITIONS "${VEXCL_COMPILE_DEFINITIONS}"
INTERFACE_LINK_LIBRARIES "${VEXCL_LINK_LIBRARIES}" )
2021-06-30 16:41:35 +02:00
target_include_directories ( OPM::VexCL::OpenCL SYSTEM INTERFACE "${VEXCL_INCLUDE_DIRS}" )
2021-06-30 16:03:14 +02:00
endif ()
endif ()
2013-08-02 14:07:33 +02:00
# read the list of components from this file (in the project directory);
# it should set various lists with the names of the files to include
include ( CMakeLists_files.cmake )
2013-05-15 10:40:00 +02:00
2013-08-02 14:07:33 +02:00
macro ( config_hook )
2019-06-13 14:59:31 +02:00
opm_need_version_of ( "dune-common" )
opm_need_version_of ( "dune-istl" )
2019-10-22 12:49:06 +02:00
if ( dune-fem_FOUND )
opm_need_version_of ( "dune-fem" )
endif ()
2019-08-23 08:34:32 +02:00
opm_need_version_of ( "opm-models" )
2020-09-28 11:01:13 +02:00
2021-03-11 20:03:00 +01:00
if ( NOT fmt_FOUND )
add_definitions ( -DFMT_HEADER_ONLY )
list ( APPEND EXTRA_INCLUDES SYSTEM ${ PROJECT_SOURCE_DIR } /external/fmtlib/include )
endif ()
2020-09-28 11:01:13 +02:00
include_directories ( ${ EXTRA_INCLUDES } )
2013-08-02 14:07:33 +02:00
endmacro ( config_hook )
2013-05-15 10:40:00 +02:00
2013-08-02 14:07:33 +02:00
macro ( prereqs_hook )
endmacro ( prereqs_hook )
2013-05-15 10:40:00 +02:00
2013-08-02 14:07:33 +02:00
macro ( sources_hook )
endmacro ( sources_hook )
2013-05-15 10:40:00 +02:00
2013-08-02 14:07:33 +02:00
macro ( fortran_hook )
endmacro ( fortran_hook )
2013-05-15 10:40:00 +02:00
2014-06-16 14:40:52 +02:00
macro ( files_hook )
endmacro ( files_hook )
2013-08-02 14:07:33 +02:00
macro ( tests_hook )
endmacro ( tests_hook )
2013-05-15 10:40:00 +02:00
2013-08-02 14:07:33 +02:00
# all setup common to the OPM library modules is done here
include ( OpmLibMain )
2013-05-15 10:40:00 +02:00
2018-03-12 15:37:21 +01:00
if ( HAVE_OPM_TESTS )
2016-11-21 18:02:21 +01:00
include ( ${ CMAKE_CURRENT_SOURCE_DIR } /compareECLFiles.cmake )
2017-03-03 15:08:12 +01:00
endif ()
2018-09-19 11:45:40 +02:00
2018-11-13 10:28:05 +01:00
opm_set_test_driver ( ${ CMAKE_CURRENT_SOURCE_DIR } /tests/run-parallel-unitTest.sh "" )
opm_add_test ( test_gatherconvergencereport
DEPENDS "opmsimulators"
LIBRARIES opmsimulators ${ Boost_UNIT_TEST_FRAMEWORK_LIBRARY }
SOURCES
tests/test_gatherconvergencereport.cpp
CONDITION
2020-02-19 12:28:55 +01:00
MPI_FOUND AND Boost_UNIT_TEST_FRAMEWORK_FOUND
2018-11-13 10:28:05 +01:00
DRIVER_ARGS
2020-10-20 08:12:38 +02:00
4 ${ PROJECT_BINARY_DIR }
2018-11-13 10:28:05 +01:00
)
2019-01-11 13:53:18 +01:00
opm_add_test ( test_gatherdeferredlogger
DEPENDS "opmsimulators"
LIBRARIES opmsimulators ${ Boost_UNIT_TEST_FRAMEWORK_LIBRARY }
SOURCES
tests/test_gatherdeferredlogger.cpp
CONDITION
2020-02-19 12:28:55 +01:00
MPI_FOUND AND Boost_UNIT_TEST_FRAMEWORK_FOUND
2019-01-11 13:53:18 +01:00
DRIVER_ARGS
2020-10-20 08:12:38 +02:00
4 ${ PROJECT_BINARY_DIR }
2019-01-11 13:53:18 +01:00
)
2020-12-09 15:37:03 +01:00
opm_add_test ( test_parallelwellinfo_mpi
2021-04-30 17:00:20 +02:00
EXE_NAME
test_parallelwellinfo
2020-12-09 15:37:03 +01:00
CONDITION
MPI_FOUND AND Boost_UNIT_TEST_FRAMEWORK_FOUND
DRIVER_ARGS
4 ${ PROJECT_BINARY_DIR }
2021-04-30 17:00:20 +02:00
NO_COMPILE
2020-12-09 15:37:03 +01:00
)
2019-03-06 11:54:21 +01:00
include ( OpmBashCompletion )
2019-01-11 13:53:18 +01:00
2019-03-07 12:45:15 +01:00
if ( NOT BUILD_FLOW )
set ( FLOW_DEFAULT_ENABLE_IF "FALSE" )
else ()
set ( FLOW_DEFAULT_ENABLE_IF "TRUE" )
endif ()
2021-08-17 08:52:16 +02:00
if ( NOT BUILD_FLOW_VARIANTS )
set ( FLOW_VARIANTS_DEFAULT_ENABLE_IF "FALSE" )
else ()
set ( FLOW_VARIANTS_DEFAULT_ENABLE_IF "TRUE" )
endif ()
if ( NOT BUILD_FLOW_POLY_GRID )
set ( FLOW_POLY_ONLY_DEFAULT_ENABLE_IF "FALSE" )
else ()
set ( FLOW_POLY_ONLY_DEFAULT_ENABLE_IF "TRUE" )
endif ()
2020-06-08 10:06:39 +02:00
add_library ( moduleVersion OBJECT opm/simulators/utils/moduleVersion.cpp )
2020-09-25 11:06:31 +02:00
set_property ( TARGET moduleVersion PROPERTY POSITION_INDEPENDENT_CODE ON )
2020-06-08 10:06:39 +02:00
2020-06-09 15:08:30 +02:00
# Strictly we only depend on the update-version target,
# but this is not exposed in a super-build.
add_dependencies ( moduleVersion opmsimulators )
2020-09-07 12:00:30 +02:00
set ( COMMON_MODELS brine energy extbo foam gasoil gaswater oilwater oilwater_polymer polymer solvent )
2020-11-18 13:19:34 +01:00
set ( FLOW_MODELS blackoil oilwater_brine oilwater_polymer_injectivity )
2020-11-18 13:00:32 +01:00
2020-10-23 11:53:50 +02:00
set ( FLOW_TGTS )
2020-11-18 13:00:32 +01:00
foreach ( OBJ ${ COMMON_MODELS } ${ FLOW_MODELS } )
2020-10-23 11:53:50 +02:00
add_library ( flow_lib ${ OBJ } OBJECT flow/flow_ebos_ ${ OBJ } .cpp )
list ( APPEND FLOW_TGTS $< TARGET_OBJECTS:flow_lib${OBJ} > )
2021-04-09 11:31:16 +02:00
if ( TARGET fmt::fmt )
target_link_libraries ( flow_lib ${ OBJ } fmt::fmt )
endif ()
2020-10-23 11:53:50 +02:00
endforeach ()
2020-09-25 11:06:31 +02:00
set_property ( TARGET flow_libblackoil PROPERTY POSITION_INDEPENDENT_CODE ON )
2021-08-17 08:52:16 +02:00
add_library ( flow_libonephase_energy OBJECT flow/flow_ebos_onephase_energy.cpp )
add_library ( flow_libonephase OBJECT flow/flow_ebos_onephase.cpp )
if ( TARGET fmt::fmt )
target_link_libraries ( flow_libonephase_energy fmt::fmt )
target_link_libraries ( flow_libonephase fmt::fmt )
2021-08-16 12:40:41 +02:00
endif ()
2021-08-17 08:52:16 +02:00
set_property ( TARGET flow_libonephase PROPERTY EXCLUDE_FROM_ALL ${ FLOW_VARIANTS_DEFAULT_ENABLE_IF } )
set_property ( TARGET flow_libonephase_energy PROPERTY EXCLUDE_FROM_ALL ${ FLOW_VARIANTS_DEFAULT_ENABLE_IF } )
2021-08-16 12:40:41 +02:00
2021-08-17 08:52:16 +02:00
add_library ( flow_libblackoil_poly OBJECT flow/flow_ebos_blackoil_poly.cpp )
if ( TARGET fmt::fmt )
target_link_libraries ( flow_libblackoil_poly fmt::fmt )
endif ()
set_property ( TARGET flow_libblackoil_poly PROPERTY EXCLUDE_FROM_ALL ${ FLOW_POLY_ONLY_DEFAULT_ENABLE_IF } )
2021-08-16 12:40:41 +02:00
2019-02-27 22:34:10 +01:00
# the production oriented general-purpose ECL simulator
2018-09-20 10:58:27 +02:00
opm_add_test ( flow
ONLY_COMPILE
ALWAYS_ENABLE
2019-03-07 12:45:15 +01:00
DEFAULT_ENABLE_IF ${ FLOW_DEFAULT_ENABLE_IF }
2020-06-08 10:06:39 +02:00
DEPENDS opmsimulators
LIBRARIES opmsimulators
2018-09-20 10:58:27 +02:00
SOURCES
2019-03-07 12:45:15 +01:00
flow/flow.cpp
2020-10-23 11:53:50 +02:00
${ FLOW_TGTS }
2020-09-25 11:06:31 +02:00
$< TARGET_OBJECTS:moduleVersion >
)
2020-06-08 10:06:39 +02:00
2019-03-07 12:45:15 +01:00
2020-02-07 14:36:22 +01:00
if ( NOT BUILD_FLOW_BLACKOIL_ONLY )
set ( FLOW_BLACKOIL_ONLY_DEFAULT_ENABLE_IF "FALSE" )
else ()
set ( FLOW_BLACKOIL_ONLY_DEFAULT_ENABLE_IF "TRUE" )
endif ()
# the production oriented general-purpose ECL simulator
opm_add_test ( flow_blackoil
ONLY_COMPILE
ALWAYS_ENABLE
DEFAULT_ENABLE_IF ${ FLOW_BLACKOIL_ONLY_DEFAULT_ENABLE_IF }
2020-06-08 10:06:39 +02:00
DEPENDS opmsimulators
LIBRARIES opmsimulators
2020-02-07 14:36:22 +01:00
SOURCES
flow/flow.cpp
2020-10-23 11:53:50 +02:00
$< TARGET_OBJECTS:flow_libblackoil >
2020-06-08 10:06:39 +02:00
$< TARGET_OBJECTS:moduleVersion > )
2020-02-07 14:36:22 +01:00
target_compile_definitions ( flow_blackoil PRIVATE "FLOW_BLACKOIL_ONLY" )
2020-11-10 08:54:44 +01:00
# the production oriented general-purpose ECL simulator
opm_add_test ( flow_poly
ONLY_COMPILE
ALWAYS_ENABLE
DEFAULT_ENABLE_IF ${ FLOW_POLY_ONLY_DEFAULT_ENABLE_IF }
DEPENDS opmsimulators
LIBRARIES opmsimulators
SOURCES
flow/flow_blackoil_poly.cpp
2021-08-16 12:40:41 +02:00
$< TARGET_OBJECTS:flow_libblackoil_poly >
2020-11-10 08:54:44 +01:00
$< TARGET_OBJECTS:moduleVersion > )
target_compile_definitions ( flow_poly PRIVATE USE_POLYHEDRALGRID )
2021-01-26 21:17:32 +01:00
# the production oriented general-purpose ECL simulator
opm_add_test ( flow_distribute_z
ONLY_COMPILE
ALWAYS_ENABLE
DEFAULT_ENABLE_IF ${ FLOW_DEFAULT_ENABLE_IF }
DEPENDS opmsimulators
LIBRARIES opmsimulators
SOURCES
flow/flow_distribute_z.cpp
${ FLOW_TGTS }
$< TARGET_OBJECTS:moduleVersion >
)
2020-11-10 08:54:44 +01:00
2019-10-11 08:46:17 +02:00
# Variant versions of Flow.
2019-03-21 22:15:22 +01:00
opm_add_test ( flow_blackoil_dunecpr
ONLY_COMPILE
2019-10-11 08:46:17 +02:00
DEFAULT_ENABLE_IF ${ FLOW_VARIANTS_DEFAULT_ENABLE_IF }
2020-06-08 10:06:39 +02:00
SOURCES
flow/flow_blackoil_dunecpr.cpp
$< TARGET_OBJECTS:moduleVersion >
2019-03-21 22:15:22 +01:00
EXE_NAME flow_blackoil_dunecpr
2020-06-08 10:06:39 +02:00
DEPENDS opmsimulators
LIBRARIES opmsimulators )
2019-03-21 22:15:22 +01:00
2019-10-10 16:14:44 +02:00
opm_add_test ( flow_onephase
ONLY_COMPILE
2019-10-11 08:46:17 +02:00
DEFAULT_ENABLE_IF ${ FLOW_VARIANTS_DEFAULT_ENABLE_IF }
2020-06-08 10:06:39 +02:00
SOURCES
flow/flow_onephase.cpp
$< TARGET_OBJECTS:moduleVersion >
2021-08-16 12:40:41 +02:00
$< TARGET_OBJECTS:flow_libonephase >
2019-10-10 16:14:44 +02:00
EXE_NAME flow_onephase
2020-06-08 10:06:39 +02:00
DEPENDS opmsimulators
LIBRARIES opmsimulators )
2019-10-10 16:14:44 +02:00
opm_add_test ( flow_onephase_energy
ONLY_COMPILE
2019-10-11 08:46:17 +02:00
DEFAULT_ENABLE_IF ${ FLOW_VARIANTS_DEFAULT_ENABLE_IF }
2020-06-08 10:06:39 +02:00
SOURCES
flow/flow_onephase_energy.cpp
$< TARGET_OBJECTS:moduleVersion >
2021-08-16 12:40:41 +02:00
$< TARGET_OBJECTS:flow_libonephase_energy >
2019-10-10 16:14:44 +02:00
EXE_NAME flow_onephase_energy
2021-08-16 12:40:41 +02:00
DEPENDS opmsimulators flow_libonephase_energy
2020-06-08 10:06:39 +02:00
LIBRARIES opmsimulators )
2019-10-10 16:14:44 +02:00
2019-03-07 12:45:15 +01:00
if ( BUILD_FLOW )
install ( TARGETS flow DESTINATION bin )
opm_add_bash_completion ( flow )
add_test ( NAME flow__version
COMMAND flow --version )
set_tests_properties ( flow__version PROPERTIES
PASS_REGULAR_EXPRESSION "${${project}_LABEL}" )
2019-03-06 11:54:21 +01:00
endif ()
2018-12-09 21:15:59 +01:00
2019-03-07 12:45:15 +01:00
if ( NOT BUILD_EBOS )
set ( EBOS_DEFAULT_ENABLE_IF "FALSE" )
else ()
set ( EBOS_DEFAULT_ENABLE_IF "TRUE" )
endif ()
2019-06-13 14:59:31 +02:00
2019-02-27 22:34:10 +01:00
# the research oriented general-purpose ECL simulator ("ebos" == &ecl
# &black-&oil &simulator)
2019-08-09 11:04:45 +02:00
set ( MEBOS_TARGETS "" )
2020-11-18 13:19:34 +01:00
foreach ( OBJ ${ COMMON_MODELS } blackoil )
2019-06-13 14:59:31 +02:00
add_library ( ebos_lib ${ OBJ } OBJECT EXCLUDE_FROM_ALL ebos/ebos_ ${ OBJ } .cc )
2021-04-09 11:31:16 +02:00
if ( TARGET fmt::fmt )
target_link_libraries ( ebos_lib ${ OBJ } fmt::fmt )
endif ()
2019-08-09 11:04:45 +02:00
list ( APPEND MEBOS_TARGETS $< TARGET_OBJECTS:ebos_lib${OBJ} > )
2019-06-13 14:59:31 +02:00
endforeach ()
2019-02-27 22:34:10 +01:00
opm_add_test ( ebos
2019-03-04 15:38:07 +01:00
ONLY_COMPILE
2019-03-07 12:45:15 +01:00
DEFAULT_ENABLE_IF ${ EBOS_DEFAULT_ENABLE_IF }
2019-03-04 15:38:07 +01:00
ALWAYS_ENABLE
2019-06-13 14:59:31 +02:00
EXE_NAME ebos
LIBRARIES opmsimulators
SOURCES ebos/ebos_main.cc $< TARGET_OBJECTS:ebos_libblackoil > )
2018-12-09 21:15:59 +01:00
2019-03-07 12:45:15 +01:00
if ( BUILD_EBOS )
install ( TARGETS ebos DESTINATION bin )
opm_add_bash_completion ( ebos )
endif ()
if ( NOT BUILD_EBOS_EXTENSIONS )
set ( EBOS_EXTENSIONS_DEFAULT_ENABLE_IF "FALSE" )
else ()
set ( EBOS_EXTENSIONS_DEFAULT_ENABLE_IF "TRUE" )
endif ()
2020-11-18 13:19:34 +01:00
foreach ( OBJ ${ COMMON_MODELS } )
2019-06-13 14:59:31 +02:00
opm_add_test ( ebos_ ${ OBJ }
ONLY_COMPILE
DEFAULT_ENABLE_IF ${ EBOS_EXTENSIONS_DEFAULT_ENABLE_IF }
SOURCES ebos/ebos_ ${ OBJ } _main.cc $< TARGET_OBJECTS:ebos_lib${OBJ} >
EXE_NAME ebos_ ${ OBJ }
LIBRARIES opmsimulators )
endforeach ()
2019-06-11 10:22:11 +02:00
opm_add_test ( mebos
ONLY_COMPILE
DEFAULT_ENABLE_IF ${ EBOS_EXTENSIONS_DEFAULT_ENABLE_IF }
2019-06-13 14:59:31 +02:00
SOURCES ebos/mebos_main.cc
2019-08-09 11:04:45 +02:00
${ MEBOS_TARGETS }
2019-06-13 14:59:31 +02:00
EXE_NAME mebos
LIBRARIES opmsimulators )
2019-03-05 11:41:02 +01:00
2019-03-11 16:50:47 +01:00
if ( NOT BUILD_EBOS_DEBUG_EXTENSIONS )
set ( EBOS_DEBUG_EXTENSIONS_DEFAULT_ENABLE_IF "FALSE" )
else ()
set ( EBOS_DEBUG_EXTENSIONS_DEFAULT_ENABLE_IF "TRUE" )
endif ()
2019-03-07 12:45:15 +01:00
if ( BUILD_EBOS_EXTENSIONS )
2020-11-18 13:19:34 +01:00
foreach ( TGT ${ COMMON_MODELS } )
2020-11-18 13:00:32 +01:00
install ( TARGETS ebos_ ${ TGT } DESTINATION bin )
opm_add_bash_completion ( ebos_ ${ TGT } )
2019-06-13 14:59:31 +02:00
endforeach ()
2020-11-18 13:00:32 +01:00
install ( TARGETS mebos DESTINATION bin )
opm_add_bash_completion ( mebos )
2019-03-06 11:54:21 +01:00
endif ()
2019-10-31 16:41:13 +01:00
if ( OPM_ENABLE_PYTHON )
add_subdirectory ( python )
endif ()
2020-01-09 09:32:24 +01:00
2020-04-03 10:15:49 +02:00
add_custom_target ( extra_test ${ CMAKE_CTEST_COMMAND } -C ExtraTests )
2020-12-22 12:57:01 +01:00
# must link libraries after target 'opmsimulators' has been defined
2020-01-09 09:32:24 +01:00
if ( CUDA_FOUND )
2020-02-25 16:54:53 +01:00
target_link_libraries ( opmsimulators PUBLIC ${ CUDA_cusparse_LIBRARY } )
target_link_libraries ( opmsimulators PUBLIC ${ CUDA_cublas_LIBRARY } )
2020-01-09 09:32:24 +01:00
endif ()
2020-06-22 18:26:49 +02:00
if ( OpenCL_FOUND )
2021-04-01 14:29:31 +02:00
target_link_libraries ( opmsimulators PUBLIC ${ OpenCL_LIBRARIES } )
2020-06-22 18:26:49 +02:00
endif ()
2020-12-22 12:57:01 +01:00
2021-06-30 16:03:14 +02:00
if ( VexCL_FOUND )
target_link_libraries ( opmsimulators PUBLIC OPM::VexCL::OpenCL )
endif ()
2020-12-22 12:57:01 +01:00
if ( HAVE_FPGA )
add_dependencies ( opmsimulators FPGA_library )
ExternalProject_Get_Property ( FPGA_library binary_dir )
target_link_libraries ( opmsimulators PUBLIC ${ binary_dir } /fpga_lib_alveo_u280.a )
endif ()