2013-05-15 03:24:52 -05:00
|
|
|
# This file sets up five lists:
|
2016-04-08 06:07:44 -05:00
|
|
|
# MAIN_SOURCE_FILES List of compilation units which will be included in
|
|
|
|
# the library. If it isn't on this list, it won't be
|
|
|
|
# part of the library. Please try to keep it sorted to
|
|
|
|
# maintain sanity.
|
2013-05-15 03:24:52 -05:00
|
|
|
#
|
2016-04-08 06:07:44 -05:00
|
|
|
# TEST_SOURCE_FILES List of programs that will be run as unit tests.
|
2013-05-15 03:24:52 -05:00
|
|
|
#
|
2016-04-08 06:07:44 -05:00
|
|
|
# TEST_DATA_FILES Files from the source three that should be made
|
|
|
|
# available in the corresponding location in the build
|
|
|
|
# tree in order to run tests there.
|
2013-05-15 03:24:52 -05:00
|
|
|
#
|
2016-04-08 06:07:44 -05:00
|
|
|
# EXAMPLE_SOURCE_FILES Other programs that will be compiled as part of the
|
|
|
|
# build, but which is not part of the library nor is
|
|
|
|
# run as tests.
|
2013-05-15 03:24:52 -05:00
|
|
|
#
|
2016-04-08 06:07:44 -05:00
|
|
|
# PUBLIC_HEADER_FILES List of public header files that should be
|
|
|
|
# distributed together with the library. The source
|
|
|
|
# files can of course include other files than these;
|
|
|
|
# you should only add to this list if the *user* of
|
|
|
|
# the library needs it.
|
2013-05-15 03:24:52 -05:00
|
|
|
|
2024-03-11 09:30:51 -05:00
|
|
|
# This macro adds a cuda/hip source file to the correct source file list
|
|
|
|
# it takes in the list to add it to, the path to the cuistl directory, and then
|
|
|
|
# the rest of the file path after cuistl. The reason for splitting this into to
|
|
|
|
# paths is to simplify replacing the cuistl part with hipistl.
|
|
|
|
# Cuda files are added as they are, whereas hip files should be added after
|
|
|
|
# hipification, we a dependency that will trigger when the cuda source code is
|
|
|
|
# changed.
|
|
|
|
macro (ADD_CUDA_OR_HIP_FILE LIST DIR FILE)
|
2024-08-22 08:32:21 -05:00
|
|
|
set (cuda_file_path "${PROJECT_SOURCE_DIR}/${DIR}/gpuistl/${FILE}")
|
2024-03-11 09:30:51 -05:00
|
|
|
|
|
|
|
if(CUDA_FOUND AND NOT CONVERT_CUDA_TO_HIP)
|
2024-08-22 08:32:21 -05:00
|
|
|
list (APPEND ${LIST} "${DIR}/gpuistl/${FILE}")
|
2024-03-11 09:30:51 -05:00
|
|
|
else()
|
|
|
|
# we must hipify the code
|
|
|
|
# and include the correct path which is in the build/binary dir
|
|
|
|
string(REPLACE ".cu" ".hip" HIP_SOURCE_FILE ${FILE})
|
2024-08-22 08:32:21 -05:00
|
|
|
set (hip_file_path "${PROJECT_BINARY_DIR}/${DIR}/gpuistl_hip/${HIP_SOURCE_FILE}")
|
2024-03-11 09:30:51 -05:00
|
|
|
file(RELATIVE_PATH relpath ${PROJECT_SOURCE_DIR} ${hip_file_path})
|
|
|
|
|
2024-06-26 08:38:10 -05:00
|
|
|
# add a custom command that will hipify
|
2024-03-11 09:30:51 -05:00
|
|
|
add_custom_command(
|
|
|
|
OUTPUT ${hip_file_path}
|
|
|
|
COMMAND bash "${PROJECT_SOURCE_DIR}/bin/hipify_file.sh" ${cuda_file_path} ${hip_file_path}
|
|
|
|
DEPENDS ${cuda_file_path}
|
|
|
|
COMMENT "Rehipifying because of change in ${cuda_file_path}"
|
|
|
|
)
|
|
|
|
|
|
|
|
# set_source_files_properties(${relpath} PROPERTIES LANGUAGE HIP)
|
|
|
|
list(APPEND ${LIST} ${relpath})
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
2013-05-15 03:24:52 -05:00
|
|
|
# originally generated with the command:
|
|
|
|
# find opm -name '*.c*' -printf '\t%p\n' | sort
|
|
|
|
list (APPEND MAIN_SOURCE_FILES
|
2024-02-02 05:25:24 -06:00
|
|
|
opm/simulators/flow/ActionHandler.cpp
|
2023-02-01 01:40:41 -06:00
|
|
|
opm/simulators/flow/Banners.cpp
|
2024-08-14 07:46:53 -05:00
|
|
|
opm/simulators/flow/BlackoilModelParameters.cpp
|
2024-02-02 04:03:48 -06:00
|
|
|
opm/simulators/flow/CollectDataOnIORank.cpp
|
2022-12-13 07:05:17 -06:00
|
|
|
opm/simulators/flow/ConvergenceOutputConfiguration.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/EclGenericWriter.cpp
|
Output Non-Linear Convergence to Separate File if Requested
This commit enables outputting non-linear convergence metrics, i.e.,
the MB and CNV values, per phase, for each non-linear iteration in
each timestep. If the user passes the option value "iterations" to
the --extra-convergence-output command line option, this commit will
create a new output file, CASE.INFOITER, that holds
* report step
* time step within that report step
* elapsed time
* MB and CNV values per phase
* well convergence status
for each non-linear iteration.
We use an asynchronous file writing procedure and confer ownership
of the report step's unprocessed convergence reports to this
procedure just before the end of
SimulatorFullyImplicitBlackoilEbos::runStep()
At that point, the convergence reports are about to go out of scope.
The asynchronous protocol uses a dedicated queue of output requests,
class ConvergenceReportQueue, into which the producer-i.e., member
function runStep()-inserts new convergence reports and from which
the output thread, ConvergenceOutputThread::writeASynchronous(),
retrieves those requests before writing the file data.
2022-12-13 08:14:05 -06:00
|
|
|
opm/simulators/flow/ExtraConvergenceOutputThread.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/FlowGenericProblem.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/FlowGenericVanguard.cpp
|
2024-08-15 02:26:02 -05:00
|
|
|
opm/simulators/flow/FlowProblemParameters.cpp
|
2024-03-01 07:22:52 -06:00
|
|
|
opm/simulators/flow/FlowUtils.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/GenericCpGridVanguard.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/GenericOutputBlackoilModule.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/GenericThresholdPressure.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/GenericTracerModel.cpp
|
2024-02-02 05:25:24 -06:00
|
|
|
opm/simulators/flow/InterRegFlows.cpp
|
2021-04-09 15:20:38 -05:00
|
|
|
opm/simulators/flow/KeywordValidation.cpp
|
2023-08-04 05:12:28 -05:00
|
|
|
opm/simulators/flow/LogOutputHelper.cpp
|
2023-01-11 08:38:42 -06:00
|
|
|
opm/simulators/flow/Main.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/MixingRateControls.cpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/flow/NonlinearSolver.cpp
|
2024-02-02 04:03:48 -06:00
|
|
|
opm/simulators/flow/partitionCells.cpp
|
2023-12-11 02:16:54 -06:00
|
|
|
opm/simulators/flow/RSTConv.cpp
|
2024-02-28 03:52:03 -06:00
|
|
|
opm/simulators/flow/RegionPhasePVAverage.cpp
|
2024-02-02 01:41:35 -06:00
|
|
|
opm/simulators/flow/SimulatorReportBanners.cpp
|
2023-08-23 02:25:09 -05:00
|
|
|
opm/simulators/flow/SimulatorSerializer.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/SolutionContainers.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/Transmissibility.cpp
|
2021-07-23 02:58:52 -05:00
|
|
|
opm/simulators/flow/ValidationFunctions.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/equil/EquilibrationHelpers.cpp
|
|
|
|
opm/simulators/flow/equil/InitStateEquil.cpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/linalg/ExtractParallelGridInformationToISTL.cpp
|
2020-06-17 06:03:57 -05:00
|
|
|
opm/simulators/linalg/FlexibleSolver1.cpp
|
|
|
|
opm/simulators/linalg/FlexibleSolver2.cpp
|
|
|
|
opm/simulators/linalg/FlexibleSolver3.cpp
|
|
|
|
opm/simulators/linalg/FlexibleSolver4.cpp
|
2021-10-06 12:32:35 -05:00
|
|
|
opm/simulators/linalg/FlexibleSolver5.cpp
|
|
|
|
opm/simulators/linalg/FlexibleSolver6.cpp
|
2024-08-14 07:21:48 -05:00
|
|
|
opm/simulators/linalg/FlowLinearSolverParameters.cpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/linalg/ISTLSolver.cpp
|
2022-08-16 03:45:32 -05:00
|
|
|
opm/simulators/linalg/MILU.cpp
|
2022-08-17 03:37:00 -05:00
|
|
|
opm/simulators/linalg/ParallelIstlInformation.cpp
|
2022-08-17 03:37:00 -05:00
|
|
|
opm/simulators/linalg/ParallelOverlappingILU0.cpp
|
2022-08-17 01:23:01 -05:00
|
|
|
opm/simulators/linalg/PreconditionerFactory1.cpp
|
|
|
|
opm/simulators/linalg/PreconditionerFactory2.cpp
|
|
|
|
opm/simulators/linalg/PreconditionerFactory3.cpp
|
|
|
|
opm/simulators/linalg/PreconditionerFactory4.cpp
|
|
|
|
opm/simulators/linalg/PreconditionerFactory5.cpp
|
|
|
|
opm/simulators/linalg/PreconditionerFactory6.cpp
|
2021-06-09 03:35:22 -05:00
|
|
|
opm/simulators/linalg/PropertyTree.cpp
|
2020-10-11 02:24:05 -05:00
|
|
|
opm/simulators/linalg/setupPropertyTree.cpp
|
2017-02-10 06:01:50 -06:00
|
|
|
opm/simulators/timestepping/AdaptiveSimulatorTimer.cpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/timestepping/AdaptiveTimeStepping.cpp
|
2024-01-23 04:16:57 -06:00
|
|
|
opm/simulators/timestepping/ConvergenceReport.cpp
|
2024-08-14 07:21:48 -05:00
|
|
|
opm/simulators/timestepping/EclTimeSteppingParams.cpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/timestepping/SimulatorReport.cpp
|
2017-02-10 06:01:50 -06:00
|
|
|
opm/simulators/timestepping/SimulatorTimer.cpp
|
2021-06-08 08:44:56 -05:00
|
|
|
opm/simulators/timestepping/SimulatorTimerInterface.cpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/timestepping/TimeStepControl.cpp
|
2018-11-13 07:01:01 -06:00
|
|
|
opm/simulators/timestepping/gatherConvergenceReport.cpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/utils/BlackoilPhases.cpp
|
2023-06-30 04:44:56 -05:00
|
|
|
opm/simulators/utils/ComponentName.cpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/utils/DeferredLogger.cpp
|
2021-04-29 02:01:03 -05:00
|
|
|
opm/simulators/utils/ParallelFileMerger.cpp
|
2019-10-10 16:06:55 -05:00
|
|
|
opm/simulators/utils/ParallelRestart.cpp
|
2023-06-30 04:44:56 -05:00
|
|
|
opm/simulators/utils/PartiallySupportedFlowKeywords.cpp
|
2023-08-04 06:45:24 -05:00
|
|
|
opm/simulators/utils/PressureAverage.cpp
|
2023-01-31 04:41:41 -06:00
|
|
|
opm/simulators/utils/SerializationPackers.cpp
|
2023-06-30 04:44:56 -05:00
|
|
|
opm/simulators/utils/UnsupportedFlowKeywords.cpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/utils/compressPartition.cpp
|
|
|
|
opm/simulators/utils/gatherDeferredLogger.cpp
|
|
|
|
opm/simulators/utils/phaseUsageFromDeck.cpp
|
|
|
|
opm/simulators/utils/readDeck.cpp
|
|
|
|
opm/simulators/utils/satfunc/RelpermDiagnostics.cpp
|
2021-05-12 16:21:01 -05:00
|
|
|
opm/simulators/wells/ALQState.cpp
|
2022-10-24 02:36:05 -05:00
|
|
|
opm/simulators/wells/BlackoilWellModelConstraints.cpp
|
2021-05-19 07:51:14 -05:00
|
|
|
opm/simulators/wells/BlackoilWellModelGeneric.cpp
|
2022-10-24 02:36:05 -05:00
|
|
|
opm/simulators/wells/BlackoilWellModelGuideRates.cpp
|
2022-10-24 02:36:05 -05:00
|
|
|
opm/simulators/wells/BlackoilWellModelRestart.cpp
|
2023-08-08 08:40:32 -05:00
|
|
|
opm/simulators/wells/ConnFiltrateData.cpp
|
2024-02-19 05:04:18 -06:00
|
|
|
opm/simulators/wells/FractionCalculator.cpp
|
Improve debugging tools in gaslift code.
Introduces a gaslift debugging variable in ALQState in WellState. This
variable will persist between timesteps in contrast to when debugging
variables are defined in GasLiftSingleWell, GasLiftGroupState, or GasLiftStage2.
Currently only an integer variable debug_counter is added to ALQState,
which can be used as follows: First debugging is switched on globally
for BlackOilWellModel, GasLiftSingleWell, GasLiftGroupState, and
GasLiftStage2 by setting glift_debug to a true value in BlackOilWellModelGeneric.
Then, the following debugging code can be added to e.g. one of
GasLiftSingleWell, GasLiftGroupState, or GasLiftStage2 :
auto count = debugUpdateGlobalCounter_();
if (count == some_integer) {
displayDebugMessage_("stop here");
}
Here, the integer "some_integer" is determined typically by looking at
the debugging output of a previous run. This can be done since the
call to debugUpdateGlobalCounter_() will print out the current value
of the counter and then increment the counter by one. And it will be
easy to recognize these values in the debug ouput. If you find a place
in the output that looks suspect, just take a note of the counter
value in the output around that point and insert the value for
"some_integer", then after recompiling the code with the desired value
for "some_integer", it is now easy to set a breakpoint in GDB at the
line
displayDebugMessage_("stop here").
shown in the above snippet. This should improve the ability to quickly
to set a breakpoint in GDB around at a given time and point in the simulation.
2022-01-23 13:37:26 -06:00
|
|
|
opm/simulators/wells/GasLiftCommon.cpp
|
2021-05-27 01:31:49 -05:00
|
|
|
opm/simulators/wells/GasLiftGroupInfo.cpp
|
2021-05-20 07:20:27 -05:00
|
|
|
opm/simulators/wells/GasLiftSingleWellGeneric.cpp
|
2021-05-25 05:00:24 -05:00
|
|
|
opm/simulators/wells/GasLiftStage2.cpp
|
2021-04-28 03:22:29 -05:00
|
|
|
opm/simulators/wells/GlobalWellInfo.cpp
|
2023-08-07 05:39:26 -05:00
|
|
|
opm/simulators/wells/GroupEconomicLimitsChecker.cpp
|
2021-04-21 02:35:41 -05:00
|
|
|
opm/simulators/wells/GroupState.cpp
|
2022-08-29 08:59:28 -05:00
|
|
|
opm/simulators/wells/MSWellHelpers.cpp
|
2022-11-18 04:57:37 -06:00
|
|
|
opm/simulators/wells/MultisegmentWellAssemble.cpp
|
2022-12-01 02:23:52 -06:00
|
|
|
opm/simulators/wells/MultisegmentWellEquations.cpp
|
2021-06-03 08:34:14 -05:00
|
|
|
opm/simulators/wells/MultisegmentWellEval.cpp
|
2021-06-03 08:34:14 -05:00
|
|
|
opm/simulators/wells/MultisegmentWellGeneric.cpp
|
2022-11-07 23:38:12 -06:00
|
|
|
opm/simulators/wells/MultisegmentWellPrimaryVariables.cpp
|
2022-12-19 06:05:07 -06:00
|
|
|
opm/simulators/wells/MultisegmentWellSegments.cpp
|
2023-06-06 14:03:48 -05:00
|
|
|
opm/simulators/wells/ParallelPAvgCalculator.cpp
|
2023-06-06 11:45:10 -05:00
|
|
|
opm/simulators/wells/ParallelPAvgDynamicSourceData.cpp
|
2023-06-06 14:03:48 -05:00
|
|
|
opm/simulators/wells/ParallelWBPCalculation.cpp
|
2020-10-06 07:52:44 -05:00
|
|
|
opm/simulators/wells/ParallelWellInfo.cpp
|
2021-06-04 06:53:13 -05:00
|
|
|
opm/simulators/wells/PerfData.cpp
|
2023-03-06 01:34:02 -06:00
|
|
|
opm/simulators/wells/RateConverter.cpp
|
2021-05-30 11:35:32 -05:00
|
|
|
opm/simulators/wells/SegmentState.cpp
|
2021-08-03 13:05:14 -05:00
|
|
|
opm/simulators/wells/SingleWellState.cpp
|
2022-11-18 04:57:37 -06:00
|
|
|
opm/simulators/wells/StandardWellAssemble.cpp
|
2022-11-10 13:23:25 -06:00
|
|
|
opm/simulators/wells/StandardWellConnections.cpp
|
2022-11-11 14:37:08 -06:00
|
|
|
opm/simulators/wells/StandardWellEquations.cpp
|
2021-06-01 08:49:24 -05:00
|
|
|
opm/simulators/wells/StandardWellEval.cpp
|
2022-11-07 23:38:12 -06:00
|
|
|
opm/simulators/wells/StandardWellPrimaryVariables.cpp
|
2021-04-29 02:01:03 -05:00
|
|
|
opm/simulators/wells/TargetCalculator.cpp
|
2021-05-28 06:04:32 -05:00
|
|
|
opm/simulators/wells/VFPHelpers.cpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/wells/VFPInjProperties.cpp
|
2023-06-06 11:45:10 -05:00
|
|
|
opm/simulators/wells/VFPProdProperties.cpp
|
2022-10-31 10:03:59 -05:00
|
|
|
opm/simulators/wells/WellAssemble.cpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellBhpThpCalculator.cpp
|
2023-01-12 05:23:28 -06:00
|
|
|
opm/simulators/wells/WellConnectionAuxiliaryModule.cpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellConstraints.cpp
|
2022-10-27 03:43:44 -05:00
|
|
|
opm/simulators/wells/WellConvergence.cpp
|
2023-07-07 03:51:06 -05:00
|
|
|
opm/simulators/wells/WellFilterCake.cpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellGroupConstraints.cpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellGroupControls.cpp
|
2020-03-27 07:27:45 -05:00
|
|
|
opm/simulators/wells/WellGroupHelpers.cpp
|
2022-08-29 08:05:06 -05:00
|
|
|
opm/simulators/wells/WellHelpers.cpp
|
2021-05-11 16:03:33 -05:00
|
|
|
opm/simulators/wells/WellInterfaceFluidSystem.cpp
|
2021-05-11 05:58:27 -05:00
|
|
|
opm/simulators/wells/WellInterfaceGeneric.cpp
|
2021-05-31 07:31:56 -05:00
|
|
|
opm/simulators/wells/WellInterfaceIndices.cpp
|
2020-10-08 17:17:16 -05:00
|
|
|
opm/simulators/wells/WellProdIndexCalculator.cpp
|
2021-05-20 06:32:18 -05:00
|
|
|
opm/simulators/wells/WellState.cpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellTest.cpp
|
2021-05-12 16:21:01 -05:00
|
|
|
opm/simulators/wells/WGState.cpp
|
2016-04-08 06:07:44 -05:00
|
|
|
)
|
2013-05-15 03:24:52 -05:00
|
|
|
|
2024-06-20 11:30:50 -05:00
|
|
|
if (HAVE_ECL_INPUT)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES
|
2024-09-02 11:40:59 -05:00
|
|
|
opm/simulators/utils/satfunc/OilPhaseConsistencyChecks.cpp
|
|
|
|
opm/simulators/utils/satfunc/PhaseCheckBase.cpp
|
2024-06-20 11:30:50 -05:00
|
|
|
opm/simulators/utils/satfunc/SatfuncConsistencyChecks.cpp
|
|
|
|
)
|
|
|
|
endif()
|
2023-08-09 08:39:32 -05:00
|
|
|
|
2024-02-02 12:32:10 -06:00
|
|
|
if (Damaris_FOUND AND MPI_FOUND AND USE_DAMARIS_LIB)
|
2024-02-02 04:10:08 -06:00
|
|
|
list (APPEND MAIN_SOURCE_FILES
|
2024-08-14 07:21:48 -05:00
|
|
|
opm/simulators/flow/DamarisParameters.cpp
|
2024-02-02 04:10:08 -06:00
|
|
|
opm/simulators/flow/DamarisWriter.cpp
|
|
|
|
opm/simulators/utils/DamarisKeywords.cpp
|
|
|
|
opm/simulators/utils/DamarisOutputModule.cpp
|
|
|
|
opm/simulators/utils/DamarisVar.cpp
|
|
|
|
opm/simulators/utils/GridDataOutput.cpp
|
|
|
|
opm/simulators/utils/initDamarisXmlFile.cpp
|
2024-02-02 12:32:10 -06:00
|
|
|
)
|
2022-09-22 07:48:56 -05:00
|
|
|
endif()
|
2023-03-28 03:29:53 -05:00
|
|
|
|
2024-03-11 09:30:51 -05:00
|
|
|
# add these files if we should compile the hip code
|
|
|
|
if (HAVE_CUDA)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg detail/CuBlasHandle.cpp)
|
2024-08-23 04:15:18 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg detail/gpusparse_matrix_operations.cu)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg detail/CuSparseHandle.cpp)
|
2024-08-22 07:12:30 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg GpuBuffer.cpp)
|
2024-06-19 06:14:59 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg detail/preconditionerKernels/DILUKernels.cu)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg detail/preconditionerKernels/ILU0Kernels.cu)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg detail/preconditionerKernels/JacKernels.cu)
|
2024-08-22 08:20:20 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg GpuVector.cpp)
|
2024-08-22 08:27:23 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg GpuView.cpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg detail/vector_operations.cu)
|
2024-08-22 08:14:33 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg GpuSparseMatrix.cpp)
|
2024-08-22 07:28:33 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg GpuDILU.cpp)
|
2024-06-19 06:14:59 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg OpmCuILU0.cpp)
|
2024-08-22 07:40:23 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg GpuJac.cpp)
|
2024-08-22 08:07:53 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg GpuSeqILU0.cpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(MAIN_SOURCE_FILES opm/simulators/linalg set_device.cpp)
|
2023-03-28 03:29:53 -05:00
|
|
|
|
2024-03-11 09:30:51 -05:00
|
|
|
# HEADERS
|
2024-08-12 02:54:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/autotuner.hpp)
|
2024-06-19 06:14:59 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/coloringAndReorderingUtils.hpp)
|
2024-08-23 04:12:13 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/gpu_safe_call.hpp)
|
2024-08-23 04:15:18 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/gpusparse_matrix_operations.hpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/cusparse_safe_call.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/cublas_safe_call.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/cuda_check_last_error.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/CuBlasHandle.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/CuSparseHandle.hpp)
|
2024-08-22 07:12:30 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg GpuBuffer.hpp)
|
2024-06-19 06:14:59 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/preconditionerKernels/DILUKernels.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/preconditionerKernels/ILU0Kernels.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/preconditionerKernels/JacKernels.hpp)
|
2024-08-22 07:28:33 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg GpuDILU.hpp)
|
2024-06-19 06:14:59 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg OpmCuILU0.hpp)
|
2024-08-22 07:40:23 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg GpuJac.hpp)
|
2024-08-22 08:20:20 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg GpuVector.hpp)
|
2024-08-22 08:27:23 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg GpuView.hpp)
|
2024-08-22 08:14:33 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg GpuSparseMatrix.hpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/CuMatrixDescription.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/CuSparseResource.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/CuSparseResource_impl.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/safe_conversion.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/cublas_wrapper.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/cusparse_wrapper.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/cusparse_constants.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/vector_operations.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/has_function.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/preconditioner_should_call_post_pre.hpp)
|
2024-06-19 06:14:59 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/deviceBlockOperations.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/gpuThreadUtils.hpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg PreconditionerAdapter.hpp)
|
2024-08-22 08:07:53 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg GpuSeqILU0.hpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg detail/fix_zero_diagonal.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg PreconditionerConvertFieldTypeAdapter.hpp)
|
2024-08-22 07:46:38 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg GpuOwnerOverlapCopy.hpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg SolverAdapter.hpp)
|
2024-08-22 06:58:35 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg GpuBlockPreconditioner.hpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg PreconditionerHolder.hpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(PUBLIC_HEADER_FILES opm/simulators/linalg set_device.hpp)
|
2019-12-03 07:10:21 -06:00
|
|
|
endif()
|
2023-03-28 09:31:50 -05:00
|
|
|
|
2023-08-09 08:39:32 -05:00
|
|
|
if(USE_BDA_BRIDGE)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/BdaBridge.cpp
|
2024-06-04 08:13:54 -05:00
|
|
|
opm/simulators/linalg/bda/CprCreation.cpp
|
|
|
|
opm/simulators/linalg/bda/Misc.cpp
|
2023-08-09 08:39:32 -05:00
|
|
|
opm/simulators/linalg/bda/WellContributions.cpp
|
|
|
|
opm/simulators/linalg/bda/MultisegmentWellContribution.cpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/linalg/ISTLSolverBda.cpp)
|
2023-08-09 08:39:32 -05:00
|
|
|
if(OPENCL_FOUND)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/BlockedMatrix.cpp)
|
2024-06-03 23:28:50 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/openclBILU0.cpp)
|
2023-08-09 08:39:32 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/Reorder.cpp)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/ChowPatelIlu.cpp)
|
2024-06-03 23:28:50 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/openclBISAI.cpp)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/openclCPR.cpp)
|
2023-08-09 08:39:32 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/opencl.cpp)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/openclKernels.cpp)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/OpenclMatrix.cpp)
|
2024-06-04 02:47:03 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/openclPreconditioner.cpp)
|
2023-08-09 08:39:32 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/openclSolverBackend.cpp)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/opencl/openclWellContributions.cpp)
|
|
|
|
endif()
|
|
|
|
if(ROCALUTION_FOUND)
|
2024-06-03 23:19:28 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/rocm/rocalutionSolverBackend.cpp)
|
2023-08-09 08:39:32 -05:00
|
|
|
endif()
|
|
|
|
if(rocsparse_FOUND AND rocblas_FOUND)
|
2024-06-04 10:13:13 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/rocm/rocsparseCPR.cpp)
|
2024-06-04 05:17:49 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/rocm/rocsparseBILU0.cpp)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/rocm/rocsparsePreconditioner.cpp)
|
2024-06-03 23:19:28 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/rocm/rocsparseSolverBackend.cpp)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/rocm/rocsparseWellContributions.cpp)
|
2024-06-04 10:13:13 -05:00
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/rocm/hipKernels.cpp)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/rocm/rocsparseMatrix.cpp)
|
2023-08-09 08:39:32 -05:00
|
|
|
endif()
|
2023-10-08 01:57:37 -05:00
|
|
|
if(CUDA_FOUND)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/cuda/cusparseSolverBackend.cu)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/cuda/cuWellContributions.cu)
|
|
|
|
endif()
|
2023-08-09 08:39:32 -05:00
|
|
|
if(amgcl_FOUND)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/amgclSolverBackend.cpp)
|
|
|
|
if(CUDA_FOUND)
|
|
|
|
list (APPEND MAIN_SOURCE_FILES opm/simulators/linalg/bda/cuda/amgclSolverBackend.cu)
|
|
|
|
endif()
|
2021-07-06 10:10:17 -05:00
|
|
|
endif()
|
2021-06-02 09:19:00 -05:00
|
|
|
endif()
|
2020-03-13 10:01:02 -05:00
|
|
|
if(MPI_FOUND)
|
2022-09-16 05:38:53 -05:00
|
|
|
list(APPEND MAIN_SOURCE_FILES opm/simulators/utils/MPIPacker.cpp
|
|
|
|
opm/simulators/utils/ParallelEclipseState.cpp
|
2023-09-12 08:43:16 -05:00
|
|
|
opm/simulators/utils/ParallelNLDDPartitioningZoltan.cpp
|
2022-09-07 06:54:15 -05:00
|
|
|
opm/simulators/utils/ParallelSerialization.cpp
|
2024-07-11 07:25:04 -05:00
|
|
|
opm/simulators/utils/SetupPartitioningParams.cpp)
|
2024-01-23 03:51:32 -06:00
|
|
|
list(APPEND PUBLIC_HEADER_FILES opm/simulators/utils/MPIPacker.hpp
|
|
|
|
opm/simulators/utils/MPISerializer.hpp)
|
2020-03-13 10:01:02 -05:00
|
|
|
endif()
|
2023-01-31 03:40:42 -06:00
|
|
|
if(HDF5_FOUND)
|
|
|
|
list(APPEND MAIN_SOURCE_FILES opm/simulators/utils/HDF5File.cpp)
|
|
|
|
endif()
|
2019-12-03 07:10:21 -06:00
|
|
|
|
2013-05-15 03:24:52 -05:00
|
|
|
# originally generated with the command:
|
|
|
|
# find tests -name '*.cpp' -a ! -wholename '*/not-unit/*' -printf '\t%p\n' | sort
|
|
|
|
list (APPEND TEST_SOURCE_FILES
|
2024-08-09 03:38:35 -05:00
|
|
|
tests/models/test_quadrature.cpp
|
|
|
|
tests/models/test_propertysystem.cpp
|
|
|
|
tests/models/test_tasklets.cpp
|
|
|
|
tests/models/test_tasklets_failure.cpp
|
2022-02-01 10:43:46 -06:00
|
|
|
tests/test_ALQState.cpp
|
2023-07-04 06:33:23 -05:00
|
|
|
tests/test_aquifergridutils.cpp
|
2017-09-07 02:15:39 -05:00
|
|
|
tests/test_blackoil_amg.cpp
|
2022-12-13 07:05:17 -06:00
|
|
|
tests/test_convergenceoutputconfiguration.cpp
|
2018-10-25 04:57:47 -05:00
|
|
|
tests/test_convergencereport.cpp
|
2022-02-01 10:43:46 -06:00
|
|
|
tests/test_deferredlogger.cpp
|
2023-09-27 08:47:05 -05:00
|
|
|
tests/test_dilu.cpp
|
2024-02-02 03:46:44 -06:00
|
|
|
tests/test_equil.cpp
|
2023-06-08 09:58:15 -05:00
|
|
|
tests/test_extractMatrix.cpp
|
2019-05-20 06:23:57 -05:00
|
|
|
tests/test_flexiblesolver.cpp
|
2022-02-01 10:43:46 -06:00
|
|
|
tests/test_glift1.cpp
|
2018-06-11 05:03:36 -05:00
|
|
|
tests/test_graphcoloring.cpp
|
2022-02-01 10:43:46 -06:00
|
|
|
tests/test_GroupState.cpp
|
2024-02-02 05:25:24 -06:00
|
|
|
tests/test_interregflows.cpp
|
2022-02-01 10:43:46 -06:00
|
|
|
tests/test_invert.cpp
|
|
|
|
tests/test_keyword_validator.cpp
|
2023-08-11 08:23:19 -05:00
|
|
|
tests/test_LogOutputHelper.cpp
|
2018-05-16 02:07:50 -05:00
|
|
|
tests/test_milu.cpp
|
2018-02-26 08:50:55 -06:00
|
|
|
tests/test_multmatrixtransposed.cpp
|
2018-01-17 08:33:33 -06:00
|
|
|
tests/test_norne_pvt.cpp
|
2023-12-19 03:34:59 -06:00
|
|
|
tests/test_outputdir.cpp
|
2024-08-09 04:40:02 -05:00
|
|
|
tests/test_parametersystem.cpp
|
2023-06-06 11:45:10 -05:00
|
|
|
tests/test_parallel_wbp_sourcevalues.cpp
|
2022-02-01 10:43:46 -06:00
|
|
|
tests/test_parallelwellinfo.cpp
|
2023-06-06 11:45:10 -05:00
|
|
|
tests/test_partitionCells.cpp
|
2022-02-01 10:43:46 -06:00
|
|
|
tests/test_preconditionerfactory.cpp
|
2023-08-24 08:11:05 -05:00
|
|
|
tests/test_privarspacking.cpp
|
2024-02-28 03:52:03 -06:00
|
|
|
tests/test_region_phase_pvaverage.cpp
|
2022-02-01 10:43:46 -06:00
|
|
|
tests/test_relpermdiagnostics.cpp
|
2023-01-31 05:09:20 -06:00
|
|
|
tests/test_RestartSerialization.cpp
|
2023-12-11 02:16:54 -06:00
|
|
|
tests/test_rstconv.cpp
|
2022-02-01 10:43:46 -06:00
|
|
|
tests/test_stoppedwells.cpp
|
|
|
|
tests/test_timer.cpp
|
|
|
|
tests/test_vfpproperties.cpp
|
|
|
|
tests/test_wellmodel.cpp
|
2020-10-08 17:17:16 -05:00
|
|
|
tests/test_wellprodindexcalculator.cpp
|
2021-05-20 06:32:18 -05:00
|
|
|
tests/test_wellstate.cpp
|
2016-04-08 06:07:44 -05:00
|
|
|
)
|
2013-11-26 05:55:41 -06:00
|
|
|
|
2024-01-31 09:28:59 -06:00
|
|
|
if (HAVE_ECL_INPUT)
|
2024-06-20 11:30:50 -05:00
|
|
|
list(APPEND TEST_SOURCE_FILES
|
|
|
|
tests/test_nonnc.cpp
|
2024-09-02 11:40:59 -05:00
|
|
|
tests/test_OilSatfuncConsistencyChecks.cpp
|
2024-06-20 11:30:50 -05:00
|
|
|
tests/test_SatfuncConsistencyChecks.cpp
|
2024-06-25 11:57:09 -05:00
|
|
|
tests/test_SatfuncConsistencyChecks_parallel.cpp
|
2024-06-20 11:30:50 -05:00
|
|
|
)
|
2024-01-31 09:28:59 -06:00
|
|
|
endif()
|
|
|
|
|
2018-01-18 00:00:24 -06:00
|
|
|
if(MPI_FOUND)
|
2024-02-05 09:01:29 -06:00
|
|
|
list(APPEND TEST_SOURCE_FILES tests/test_ghostlastmatrixadapter.cpp
|
|
|
|
tests/test_parallelistlinformation.cpp
|
2022-09-07 04:29:54 -05:00
|
|
|
tests/test_ParallelSerialization.cpp)
|
2018-01-18 00:00:24 -06:00
|
|
|
endif()
|
2023-06-06 14:03:48 -05:00
|
|
|
|
2021-06-01 06:50:27 -05:00
|
|
|
if(CUDA_FOUND)
|
2023-08-09 08:39:32 -05:00
|
|
|
if(USE_BDA_BRIDGE)
|
|
|
|
list(APPEND TEST_SOURCE_FILES tests/test_cusparseSolver.cpp)
|
|
|
|
endif()
|
2024-03-11 09:30:51 -05:00
|
|
|
endif()
|
2023-03-29 04:14:11 -05:00
|
|
|
|
2024-03-11 09:30:51 -05:00
|
|
|
if (HAVE_CUDA)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_converttofloatadapter.cpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_cublas_handle.cpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_cublas_safe_call.cpp)
|
2024-08-22 07:12:30 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_GpuBuffer.cu)
|
2024-08-22 08:27:23 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_GpuView.cu)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_cusparse_safe_call.cpp)
|
2024-08-23 04:12:13 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_gpu_safe_call.cpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_cuda_check_last_error.cpp)
|
2024-08-22 07:28:33 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_GpuDILU.cpp)
|
2024-08-22 07:40:23 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_GpuJac.cpp)
|
2024-08-22 07:46:38 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_GpuOwnerOverlapCopy.cpp)
|
2024-08-22 08:07:53 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_GpuSeqILU0.cpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_cusparse_handle.cpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_cuSparse_matrix_operations.cpp)
|
2024-08-22 08:14:33 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_GpuSparseMatrix.cpp)
|
2024-08-22 08:20:20 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_GpuVector.cpp)
|
2024-03-11 09:30:51 -05:00
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_cuVector_operations.cpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_safe_conversion.cpp)
|
|
|
|
ADD_CUDA_OR_HIP_FILE(TEST_SOURCE_FILES tests test_solver_adapter.cpp)
|
2021-06-01 06:50:27 -05:00
|
|
|
endif()
|
2023-08-09 08:39:32 -05:00
|
|
|
|
|
|
|
if(USE_BDA_BRIDGE)
|
|
|
|
if(OPENCL_FOUND)
|
|
|
|
list(APPEND TEST_SOURCE_FILES tests/test_openclSolver.cpp)
|
|
|
|
list(APPEND TEST_SOURCE_FILES tests/test_solvetransposed3x3.cpp)
|
2022-01-18 06:49:24 -06:00
|
|
|
list(APPEND TEST_SOURCE_FILES tests/test_csrToCscOffsetMap.cpp)
|
2023-08-09 08:39:32 -05:00
|
|
|
endif()
|
|
|
|
if(ROCALUTION_FOUND)
|
|
|
|
list(APPEND TEST_SOURCE_FILES tests/test_rocalutionSolver.cpp)
|
|
|
|
endif()
|
|
|
|
if(rocsparse_FOUND AND rocblas_FOUND)
|
|
|
|
list(APPEND TEST_SOURCE_FILES tests/test_rocsparseSolver.cpp)
|
|
|
|
endif()
|
2021-06-01 06:50:27 -05:00
|
|
|
endif()
|
2023-08-09 08:39:32 -05:00
|
|
|
|
2023-01-31 03:40:42 -06:00
|
|
|
if(HDF5_FOUND)
|
|
|
|
list(APPEND TEST_SOURCE_FILES tests/test_HDF5File.cpp)
|
2023-02-07 07:53:32 -06:00
|
|
|
list(APPEND TEST_SOURCE_FILES tests/test_HDF5Serializer.cpp)
|
2023-01-31 03:40:42 -06:00
|
|
|
endif()
|
2018-01-18 00:00:24 -06:00
|
|
|
|
2013-05-15 03:24:52 -05:00
|
|
|
list (APPEND TEST_DATA_FILES
|
2019-02-27 15:34:10 -06:00
|
|
|
tests/equil_base.DATA
|
|
|
|
tests/equil_capillary.DATA
|
|
|
|
tests/equil_capillary_overlap.DATA
|
|
|
|
tests/equil_capillary_swatinit.DATA
|
|
|
|
tests/equil_deadfluids.DATA
|
|
|
|
tests/equil_pbvd_and_pdvd.DATA
|
2016-04-08 06:07:44 -05:00
|
|
|
tests/VFPPROD1
|
|
|
|
tests/VFPPROD2
|
2016-12-05 07:58:47 -06:00
|
|
|
tests/msw.data
|
2017-02-10 06:01:50 -06:00
|
|
|
tests/TESTTIMER.DATA
|
2017-08-22 10:14:52 -05:00
|
|
|
tests/TESTWELLMODEL.DATA
|
2018-01-17 08:33:33 -06:00
|
|
|
tests/liveoil.DATA
|
|
|
|
tests/capillary.DATA
|
|
|
|
tests/capillary_overlap.DATA
|
|
|
|
tests/capillarySwatinit.DATA
|
|
|
|
tests/deadfluids.DATA
|
2022-12-12 06:39:00 -06:00
|
|
|
tests/equil_co2store_go.DATA
|
|
|
|
tests/equil_co2store_gw.DATA
|
2022-09-14 09:11:36 -05:00
|
|
|
tests/equil_wetgas.DATA
|
2018-01-17 08:33:33 -06:00
|
|
|
tests/equil_liveoil.DATA
|
2022-09-14 09:11:36 -05:00
|
|
|
tests/equil_humidwetgas.DATA
|
2018-01-17 08:33:33 -06:00
|
|
|
tests/equil_rsvd_and_rvvd.DATA
|
2022-09-20 03:56:54 -05:00
|
|
|
tests/equil_rsvd_and_rvvd_and_rvwvd.DATA
|
2018-01-17 08:33:33 -06:00
|
|
|
tests/wetgas.DATA
|
|
|
|
tests/satfuncEPS_B.DATA
|
|
|
|
tests/wells_manager_data.data
|
|
|
|
tests/wells_manager_data_expanded.data
|
|
|
|
tests/wells_manager_data_wellSTOP.data
|
|
|
|
tests/wells_group.data
|
|
|
|
tests/wells_stopped.data
|
|
|
|
tests/relpermDiagnostics.DATA
|
|
|
|
tests/norne_pvt.data
|
2019-01-10 04:29:28 -06:00
|
|
|
tests/wells_no_perforation.data
|
2019-05-20 06:23:57 -05:00
|
|
|
tests/matr33.txt
|
2022-01-06 13:31:40 -06:00
|
|
|
tests/offset_map_matrix.txt
|
|
|
|
tests/offset_map_matrix_transposed.txt
|
2019-05-20 06:23:57 -05:00
|
|
|
tests/rhs3.txt
|
2020-12-17 07:51:05 -06:00
|
|
|
tests/matr33rep.txt
|
|
|
|
tests/rhs3rep.txt
|
2019-05-20 06:23:57 -05:00
|
|
|
tests/options_flexiblesolver.json
|
2019-05-29 09:21:34 -05:00
|
|
|
tests/options_flexiblesolver_simple.json
|
2021-04-01 09:41:46 -05:00
|
|
|
tests/GLIFT1.DATA
|
|
|
|
tests/include/flowl_b_vfp.ecl
|
|
|
|
tests/include/flowl_c_vfp.ecl
|
|
|
|
tests/include/permx_model5.grdecl
|
|
|
|
tests/include/pvt_live_oil_dgas.ecl
|
|
|
|
tests/include/relperm.inc
|
|
|
|
tests/include/rock.inc
|
|
|
|
tests/include/summary.inc
|
|
|
|
tests/include/test1_20x30x10.grdecl
|
|
|
|
tests/include/well_vfp.ecl
|
2023-06-08 09:58:15 -05:00
|
|
|
tests/test10.partition
|
2024-08-09 04:40:02 -05:00
|
|
|
tests/parametersystem.ini
|
2024-08-09 03:38:35 -05:00
|
|
|
tests/data/co2injection.dgf
|
|
|
|
tests/data/cuvette_11x4.dgf
|
|
|
|
tests/data/cuvette_44x24.dgf
|
|
|
|
tests/data/fracture.art.dgf
|
|
|
|
tests/data/fracture-raw.art
|
|
|
|
tests/data/groundwater_1d.dgf
|
|
|
|
tests/data/groundwater_2d.dgf
|
|
|
|
tests/data/groundwater_3d.dgf
|
|
|
|
tests/data/infiltration_50x3.dgf
|
|
|
|
tests/data/infiltration_250x20.dgf
|
|
|
|
tests/data/obstacle_24x16.dgf
|
|
|
|
tests/data/obstacle_48x32.dgf
|
|
|
|
tests/data/outflow.dgf
|
|
|
|
tests/data/reservoir.dgf
|
|
|
|
tests/data/richardslens_24x16.dgf
|
|
|
|
tests/data/richardslens_48x32.dgf
|
|
|
|
tests/data/richardslens_96x64.dgf
|
|
|
|
tests/data/test_stokes.dgf
|
|
|
|
tests/data/test_stokes2c.dgf
|
|
|
|
tests/data/test_stokes2cni.dgf
|
|
|
|
tests/data/waterair.dgf
|
2016-04-08 06:07:44 -05:00
|
|
|
)
|
2013-05-15 03:24:52 -05:00
|
|
|
|
2013-11-26 05:55:41 -06:00
|
|
|
|
2013-05-15 03:24:52 -05:00
|
|
|
# originally generated with the command:
|
|
|
|
# find opm -name '*.h*' -a ! -name '*-pch.hpp' -printf '\t%p\n' | sort
|
|
|
|
list (APPEND PUBLIC_HEADER_FILES
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/models/blackoil/blackoilboundaryratevector.hh
|
|
|
|
opm/models/blackoil/blackoilbrinemodules.hh
|
|
|
|
opm/models/blackoil/blackoilbrineparams.hh
|
|
|
|
opm/models/blackoil/blackoildarcyfluxmodule.hh
|
|
|
|
opm/models/blackoil/blackoildiffusionmodule.hh
|
|
|
|
opm/models/blackoil/blackoildispersionmodule.hh
|
|
|
|
opm/models/blackoil/blackoilenergymodules.hh
|
|
|
|
opm/models/blackoil/blackoilextbomodules.hh
|
|
|
|
opm/models/blackoil/blackoilextboparams.hh
|
|
|
|
opm/models/blackoil/blackoilextensivequantities.hh
|
|
|
|
opm/models/blackoil/blackoilfoammodules.hh
|
|
|
|
opm/models/blackoil/blackoilfoamparams.hh
|
|
|
|
opm/models/blackoil/blackoilindices.hh
|
|
|
|
opm/models/blackoil/blackoilintensivequantities.hh
|
|
|
|
opm/models/blackoil/blackoillocalresidual.hh
|
|
|
|
opm/models/blackoil/blackoillocalresidualtpfa.hh
|
|
|
|
opm/models/blackoil/blackoilmicpmodules.hh
|
|
|
|
opm/models/blackoil/blackoilmicpparams.hh
|
|
|
|
opm/models/blackoil/blackoilmodel.hh
|
|
|
|
opm/models/blackoil/blackoilnewtonmethod.hh
|
|
|
|
opm/models/blackoil/blackoilnewtonmethodparameters.hh
|
|
|
|
opm/models/blackoil/blackoilonephaseindices.hh
|
|
|
|
opm/models/blackoil/blackoilpolymermodules.hh
|
|
|
|
opm/models/blackoil/blackoilpolymerparams.hh
|
|
|
|
opm/models/blackoil/blackoilprimaryvariables.hh
|
|
|
|
opm/models/blackoil/blackoilproblem.hh
|
|
|
|
opm/models/blackoil/blackoilproperties.hh
|
|
|
|
opm/models/blackoil/blackoilratevector.hh
|
|
|
|
opm/models/blackoil/blackoilsolventmodules.hh
|
|
|
|
opm/models/blackoil/blackoilsolventparams.hh
|
|
|
|
opm/models/blackoil/blackoiltwophaseindices.hh
|
|
|
|
opm/models/common/darcyfluxmodule.hh
|
|
|
|
opm/models/common/diffusionmodule.hh
|
|
|
|
opm/models/common/directionalmobility.hh
|
|
|
|
opm/models/common/energymodule.hh
|
|
|
|
opm/models/common/flux.hh
|
|
|
|
opm/models/common/forchheimerfluxmodule.hh
|
|
|
|
opm/models/common/multiphasebaseextensivequantities.hh
|
|
|
|
opm/models/common/multiphasebasemodel.hh
|
|
|
|
opm/models/common/multiphasebaseparameters.hh
|
|
|
|
opm/models/common/multiphasebaseproblem.hh
|
|
|
|
opm/models/common/multiphasebaseproperties.hh
|
|
|
|
opm/models/common/quantitycallbacks.hh
|
|
|
|
opm/models/common/transfluxmodule.hh
|
|
|
|
opm/models/discretefracture/discretefractureextensivequantities.hh
|
|
|
|
opm/models/discretefracture/discretefractureintensivequantities.hh
|
|
|
|
opm/models/discretefracture/discretefracturelocalresidual.hh
|
|
|
|
opm/models/discretefracture/discretefracturemodel.hh
|
|
|
|
opm/models/discretefracture/discretefractureprimaryvariables.hh
|
|
|
|
opm/models/discretefracture/discretefractureproblem.hh
|
|
|
|
opm/models/discretefracture/discretefractureproperties.hh
|
|
|
|
opm/models/discretefracture/fracturemapper.hh
|
|
|
|
opm/models/discretization/common/baseauxiliarymodule.hh
|
|
|
|
opm/models/discretization/common/fvbaseadlocallinearizer.hh
|
|
|
|
opm/models/discretization/common/fvbaseboundarycontext.hh
|
|
|
|
opm/models/discretization/common/fvbaseconstraints.hh
|
|
|
|
opm/models/discretization/common/fvbaseconstraintscontext.hh
|
|
|
|
opm/models/discretization/common/fvbasediscretization.hh
|
|
|
|
opm/models/discretization/common/fvbasediscretizationfemadapt.hh
|
|
|
|
opm/models/discretization/common/fvbaseelementcontext.hh
|
|
|
|
opm/models/discretization/common/fvbaseextensivequantities.hh
|
|
|
|
opm/models/discretization/common/fvbasefdlocallinearizer.hh
|
|
|
|
opm/models/discretization/common/fvbasegradientcalculator.hh
|
|
|
|
opm/models/discretization/common/fvbaseintensivequantities.hh
|
|
|
|
opm/models/discretization/common/fvbaselinearizer.hh
|
|
|
|
opm/models/discretization/common/fvbaselocalresidual.hh
|
|
|
|
opm/models/discretization/common/fvbasenewtonconvergencewriter.hh
|
|
|
|
opm/models/discretization/common/fvbasenewtonmethod.hh
|
|
|
|
opm/models/discretization/common/fvbaseparameters.hh
|
|
|
|
opm/models/discretization/common/fvbaseprimaryvariables.hh
|
|
|
|
opm/models/discretization/common/fvbaseproblem.hh
|
|
|
|
opm/models/discretization/common/fvbaseproperties.hh
|
|
|
|
opm/models/discretization/common/linearizationtype.hh
|
|
|
|
opm/models/discretization/common/restrictprolong.hh
|
|
|
|
opm/models/discretization/common/tpfalinearizer.hh
|
|
|
|
opm/models/discretization/ecfv/ecfvbaseoutputmodule.hh
|
|
|
|
opm/models/discretization/ecfv/ecfvdiscretization.hh
|
|
|
|
opm/models/discretization/ecfv/ecfvgridcommhandlefactory.hh
|
|
|
|
opm/models/discretization/ecfv/ecfvproperties.hh
|
|
|
|
opm/models/discretization/ecfv/ecfvstencil.hh
|
|
|
|
opm/models/discretization/vcfv/vcfvbaseoutputmodule.hh
|
|
|
|
opm/models/discretization/vcfv/vcfvdiscretization.hh
|
|
|
|
opm/models/discretization/vcfv/vcfvgridcommhandlefactory.hh
|
|
|
|
opm/models/discretization/vcfv/vcfvproperties.hh
|
|
|
|
opm/models/discretization/vcfv/vcfvstencil.hh
|
|
|
|
opm/models/discretization/vcfv/p1fegradientcalculator.hh
|
|
|
|
opm/models/flash/flashboundaryratevector.hh
|
|
|
|
opm/models/flash/flashextensivequantities.hh
|
|
|
|
opm/models/flash/flashindices.hh
|
|
|
|
opm/models/flash/flashintensivequantities.hh
|
|
|
|
opm/models/flash/flashlocalresidual.hh
|
|
|
|
opm/models/flash/flashmodel.hh
|
|
|
|
opm/models/flash/flashratevector.hh
|
|
|
|
opm/models/flash/flashparameters.hh
|
|
|
|
opm/models/flash/flashprimaryvariables.hh
|
|
|
|
opm/models/flash/flashproperties.hh
|
|
|
|
opm/models/immiscible/immiscibleboundaryratevector.hh
|
|
|
|
opm/models/immiscible/immiscibleextensivequantities.hh
|
|
|
|
opm/models/immiscible/immiscibleindices.hh
|
|
|
|
opm/models/immiscible/immiscibleintensivequantities.hh
|
|
|
|
opm/models/immiscible/immisciblelocalresidual.hh
|
|
|
|
opm/models/immiscible/immisciblemodel.hh
|
|
|
|
opm/models/immiscible/immiscibleprimaryvariables.hh
|
|
|
|
opm/models/immiscible/immiscibleproperties.hh
|
|
|
|
opm/models/immiscible/immiscibleratevector.hh
|
|
|
|
opm/models/io/baseoutputmodule.hh
|
|
|
|
opm/models/io/baseoutputwriter.hh
|
|
|
|
opm/models/io/basevanguard.hh
|
|
|
|
opm/models/io/cubegridvanguard.hh
|
|
|
|
opm/models/io/dgfvanguard.hh
|
|
|
|
opm/models/io/restart.hh
|
|
|
|
opm/models/io/simplexvanguard.hh
|
|
|
|
opm/models/io/structuredgridvanguard.hh
|
|
|
|
opm/models/io/unstructuredgridvanguard.hh
|
|
|
|
opm/models/io/vtkblackoilenergymodule.hh
|
|
|
|
opm/models/io/vtkblackoilmicpmodule.hh
|
|
|
|
opm/models/io/vtkblackoilmodule.hh
|
|
|
|
opm/models/io/vtkblackoilpolymermodule.hh
|
|
|
|
opm/models/io/vtkblackoilsolventmodule.hh
|
|
|
|
opm/models/io/vtkcompositionmodule.hh
|
|
|
|
opm/models/io/vtkdiffusionmodule.hh
|
|
|
|
opm/models/io/vtkdiscretefracturemodule.hh
|
|
|
|
opm/models/io/vtkenergymodule.hh
|
|
|
|
opm/models/io/vtkmultiphasemodule.hh
|
|
|
|
opm/models/io/vtkmultiwriter.hh
|
|
|
|
opm/models/io/vtkphasepresencemodule.hh
|
|
|
|
opm/models/io/vtkprimaryvarsmodule.hh
|
|
|
|
opm/models/io/vtkptflashmodule.hh
|
|
|
|
opm/models/io/vtkscalarfunction.hh
|
|
|
|
opm/models/io/vtktemperaturemodule.hh
|
|
|
|
opm/models/io/vtktensorfunction.hh
|
|
|
|
opm/models/io/vtkvectorfunction.hh
|
|
|
|
opm/models/ncp/ncpboundaryratevector.hh
|
|
|
|
opm/models/ncp/ncpextensivequantities.hh
|
|
|
|
opm/models/ncp/ncpindices.hh
|
|
|
|
opm/models/ncp/ncpintensivequantities.hh
|
|
|
|
opm/models/ncp/ncplocalresidual.hh
|
|
|
|
opm/models/ncp/ncpmodel.hh
|
|
|
|
opm/models/ncp/ncpnewtonmethod.hh
|
|
|
|
opm/models/ncp/ncpprimaryvariables.hh
|
|
|
|
opm/models/ncp/ncpproperties.hh
|
|
|
|
opm/models/ncp/ncpratevector.hh
|
|
|
|
opm/models/nonlinear/newtonmethod.hh
|
|
|
|
opm/models/nonlinear/newtonmethodparameters.hh
|
|
|
|
opm/models/nonlinear/newtonmethodproperties.hh
|
|
|
|
opm/models/nonlinear/nullconvergencewriter.hh
|
|
|
|
opm/models/parallel/gridcommhandles.hh
|
|
|
|
opm/models/parallel/mpibuffer.hh
|
|
|
|
opm/models/parallel/mpiutil.hh
|
|
|
|
opm/models/parallel/tasklets.hh
|
|
|
|
opm/models/parallel/threadedentityiterator.hh
|
|
|
|
opm/models/parallel/threadmanager.hh
|
|
|
|
opm/models/ptflash/flashindices.hh
|
|
|
|
opm/models/ptflash/flashintensivequantities.hh
|
|
|
|
opm/models/ptflash/flashlocalresidual.hh
|
|
|
|
opm/models/ptflash/flashmodel.hh
|
|
|
|
opm/models/ptflash/flashnewtonmethod.hh
|
|
|
|
opm/models/ptflash/flashparameters.hh
|
|
|
|
opm/models/ptflash/flashprimaryvariables.hh
|
|
|
|
opm/models/pvs/pvsboundaryratevector.hh
|
|
|
|
opm/models/pvs/pvsextensivequantities.hh
|
|
|
|
opm/models/pvs/pvsindices.hh
|
|
|
|
opm/models/pvs/pvsintensivequantities.hh
|
|
|
|
opm/models/pvs/pvslocalresidual.hh
|
|
|
|
opm/models/pvs/pvsmodel.hh
|
|
|
|
opm/models/pvs/pvsnewtonmethod.hh
|
|
|
|
opm/models/pvs/pvsprimaryvariables.hh
|
|
|
|
opm/models/pvs/pvsproperties.hh
|
|
|
|
opm/models/pvs/pvsratevector.hh
|
|
|
|
opm/models/richards/richardsboundaryratevector.hh
|
|
|
|
opm/models/richards/richardsextensivequantities.hh
|
|
|
|
opm/models/richards/richardsindices.hh
|
|
|
|
opm/models/richards/richardsintensivequantities.hh
|
|
|
|
opm/models/richards/richardslocalresidual.hh
|
|
|
|
opm/models/richards/richardsmodel.hh
|
|
|
|
opm/models/richards/richardsnewtonmethod.hh
|
|
|
|
opm/models/richards/richardsprimaryvariables.hh
|
|
|
|
opm/models/richards/richardsproperties.hh
|
|
|
|
opm/models/richards/richardsratevector.hh
|
|
|
|
opm/models/utils/alignedallocator.hh
|
|
|
|
opm/models/utils/basicparameters.hh
|
|
|
|
opm/models/utils/basicproperties.hh
|
|
|
|
opm/models/utils/genericguard.hh
|
|
|
|
opm/models/utils/parametersystem.hh
|
|
|
|
opm/models/utils/pffgridvector.hh
|
|
|
|
opm/models/utils/prefetch.hh
|
|
|
|
opm/models/utils/propertysystem.hh
|
|
|
|
opm/models/utils/quadraturegeometries.hh
|
|
|
|
opm/models/utils/signum.hh
|
|
|
|
opm/models/utils/simulator.hh
|
|
|
|
opm/models/utils/start.hh
|
|
|
|
opm/models/utils/timer.hh
|
|
|
|
opm/models/utils/timerguard.hh
|
2024-02-02 05:25:24 -06:00
|
|
|
opm/simulators/flow/ActionHandler.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/AluGridCartesianIndexMapper.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/AluGridVanguard.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/Banners.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/BaseAquiferModel.hpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/flow/BlackoilModel.hpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/flow/BlackoilModelNldd.hpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/flow/BlackoilModelParameters.hpp
|
2024-02-02 04:03:48 -06:00
|
|
|
opm/simulators/flow/CollectDataOnIORank.hpp
|
|
|
|
opm/simulators/flow/CollectDataOnIORank_impl.hpp
|
2022-12-13 07:05:17 -06:00
|
|
|
opm/simulators/flow/ConvergenceOutputConfiguration.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/countGlobalCells.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/CpGridVanguard.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/DummyGradientCalculator.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/EclGenericWriter.hpp
|
|
|
|
opm/simulators/flow/EclGenericWriter_impl.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/EclWriter.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/EquilInitializer.hpp
|
Output Non-Linear Convergence to Separate File if Requested
This commit enables outputting non-linear convergence metrics, i.e.,
the MB and CNV values, per phase, for each non-linear iteration in
each timestep. If the user passes the option value "iterations" to
the --extra-convergence-output command line option, this commit will
create a new output file, CASE.INFOITER, that holds
* report step
* time step within that report step
* elapsed time
* MB and CNV values per phase
* well convergence status
for each non-linear iteration.
We use an asynchronous file writing procedure and confer ownership
of the report step's unprocessed convergence reports to this
procedure just before the end of
SimulatorFullyImplicitBlackoilEbos::runStep()
At that point, the convergence reports are about to go out of scope.
The asynchronous protocol uses a dedicated queue of output requests,
class ConvergenceReportQueue, into which the producer-i.e., member
function runStep()-inserts new convergence reports and from which
the output thread, ConvergenceOutputThread::writeASynchronous(),
retrieves those requests before writing the file data.
2022-12-13 08:14:05 -06:00
|
|
|
opm/simulators/flow/ExtraConvergenceOutputThread.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/FemCpGridCompat.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/FIBlackoilModel.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/FlowBaseVanguard.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/FlowGenericProblem.hpp
|
|
|
|
opm/simulators/flow/FlowGenericProblem_impl.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/FlowGenericVanguard.hpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/flow/FlowMain.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/FlowProblem.hpp
|
2024-06-28 05:17:13 -05:00
|
|
|
opm/simulators/flow/FlowProblemParameters.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/FlowProblemProperties.hpp
|
2024-03-01 07:22:52 -06:00
|
|
|
opm/simulators/flow/FlowUtils.hpp
|
2024-02-16 07:51:19 -06:00
|
|
|
opm/simulators/flow/FlowsData.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/FlowThresholdPressure.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/GenericCpGridVanguard.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/GenericOutputBlackoilModule.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/GenericThresholdPressure.hpp
|
|
|
|
opm/simulators/flow/GenericThresholdPressure_impl.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/GenericTracerModel.hpp
|
|
|
|
opm/simulators/flow/GenericTracerModel_impl.hpp
|
2024-02-02 05:25:24 -06:00
|
|
|
opm/simulators/flow/InterRegFlows.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/KeywordValidation.hpp
|
|
|
|
opm/simulators/flow/LogOutputHelper.hpp
|
2020-04-14 03:43:26 -05:00
|
|
|
opm/simulators/flow/Main.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/MixingRateControls.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/NewTranFluxModule.hpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/flow/NonlinearSolver.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/OutputBlackoilModule.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/partitionCells.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/PolyhedralGridVanguard.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/priVarsPacking.hpp
|
2023-12-11 02:16:54 -06:00
|
|
|
opm/simulators/flow/RSTConv.hpp
|
2024-02-28 03:52:03 -06:00
|
|
|
opm/simulators/flow/RegionPhasePVAverage.hpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/flow/SimulatorFullyImplicitBlackoil.hpp
|
2024-02-02 01:41:35 -06:00
|
|
|
opm/simulators/flow/SimulatorReportBanners.hpp
|
2023-08-23 02:25:09 -05:00
|
|
|
opm/simulators/flow/SimulatorSerializer.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/SolutionContainers.hpp
|
2023-06-08 09:58:15 -05:00
|
|
|
opm/simulators/flow/SubDomain.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/TracerModel.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/Transmissibility.hpp
|
|
|
|
opm/simulators/flow/Transmissibility_impl.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/ValidationFunctions.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/flow/VtkTracerModule.hpp
|
2024-02-02 03:46:44 -06:00
|
|
|
opm/simulators/flow/equil/EquilibrationHelpers.hpp
|
|
|
|
opm/simulators/flow/equil/EquilibrationHelpers_impl.hpp
|
|
|
|
opm/simulators/flow/equil/InitStateEquil.hpp
|
|
|
|
opm/simulators/flow/equil/InitStateEquil_impl.hpp
|
2021-05-30 11:35:32 -05:00
|
|
|
opm/simulators/wells/SegmentState.hpp
|
2021-05-05 03:27:51 -05:00
|
|
|
opm/simulators/wells/WellContainer.hpp
|
2022-08-11 02:17:53 -05:00
|
|
|
opm/simulators/aquifers/AquiferAnalytical.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/aquifers/AquiferCarterTracy.hpp
|
2023-01-30 16:58:36 -06:00
|
|
|
opm/simulators/aquifers/AquiferConstantFlux.hpp
|
2023-07-04 06:33:23 -05:00
|
|
|
opm/simulators/aquifers/AquiferFetkovich.hpp
|
|
|
|
opm/simulators/aquifers/AquiferGridUtils.hpp
|
2022-08-11 02:17:53 -05:00
|
|
|
opm/simulators/aquifers/AquiferInterface.hpp
|
2020-11-13 08:08:45 -06:00
|
|
|
opm/simulators/aquifers/AquiferNumerical.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/aquifers/BlackoilAquiferModel.hpp
|
|
|
|
opm/simulators/aquifers/BlackoilAquiferModel_impl.hpp
|
2024-02-27 02:18:25 -06:00
|
|
|
opm/simulators/aquifers/SupportsFaceTag.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/linalg/amgcpr.hh
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/bicgstabsolver.hh
|
|
|
|
opm/simulators/linalg/blacklist.hh
|
|
|
|
opm/simulators/linalg/combinedcriterion.hh
|
|
|
|
opm/simulators/linalg/convergencecriterion.hh
|
2023-09-27 08:47:05 -05:00
|
|
|
opm/simulators/linalg/DILU.hpp
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/domesticoverlapfrombcrsmatrix.hh
|
|
|
|
opm/simulators/linalg/elementborderlistfromgrid.hh
|
|
|
|
opm/simulators/linalg/extractMatrix.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/linalg/ExtractParallelGridInformationToISTL.hpp
|
2023-09-27 08:47:05 -05:00
|
|
|
opm/simulators/linalg/ExtraSmoothers.hpp
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/findOverlapRowsAndColumns.hpp
|
|
|
|
opm/simulators/linalg/fixpointcriterion.hh
|
2019-05-20 06:23:57 -05:00
|
|
|
opm/simulators/linalg/FlexibleSolver.hpp
|
2020-06-19 09:04:27 -05:00
|
|
|
opm/simulators/linalg/FlexibleSolver_impl.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/linalg/FlowLinearSolverParameters.hpp
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/foreignoverlapfrombcrsmatrix.hh
|
|
|
|
opm/simulators/linalg/getQuasiImpesWeights.hpp
|
|
|
|
opm/simulators/linalg/globalindices.hh
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/linalg/GraphColoring.hpp
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/ilufirstelement.hh
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/linalg/ISTLSolver.hpp
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/istlpreconditionerwrappers.hh
|
|
|
|
opm/simulators/linalg/istlsolverwrappers.hh
|
|
|
|
opm/simulators/linalg/istlsparsematrixadapter.hh
|
|
|
|
opm/simulators/linalg/linalgparameters.hh
|
|
|
|
opm/simulators/linalg/linalgproperties.hh
|
|
|
|
opm/simulators/linalg/linearsolverreport.hh
|
|
|
|
opm/simulators/linalg/matrixblock.hh
|
2020-05-13 06:53:45 -05:00
|
|
|
opm/simulators/linalg/MatrixMarketSpecializations.hpp
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/nullborderlistmanager.hh
|
|
|
|
opm/simulators/linalg/overlappingbcrsmatrix.hh
|
|
|
|
opm/simulators/linalg/overlappingblockvector.hh
|
|
|
|
opm/simulators/linalg/overlappingoperator.hh
|
|
|
|
opm/simulators/linalg/overlappingpreconditioner.hh
|
|
|
|
opm/simulators/linalg/overlappingscalarproduct.hh
|
|
|
|
opm/simulators/linalg/overlaptypes.hh
|
2019-05-20 07:31:36 -05:00
|
|
|
opm/simulators/linalg/OwningBlockPreconditioner.hpp
|
2019-06-05 15:00:30 -05:00
|
|
|
opm/simulators/linalg/OwningTwoLevelPreconditioner.hpp
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/parallelamgbackend.hh
|
|
|
|
opm/simulators/linalg/parallelbasebackend.hh
|
|
|
|
opm/simulators/linalg/parallelbicgstabbackend.hh
|
|
|
|
opm/simulators/linalg/parallelistlbackend.hh
|
|
|
|
opm/simulators/linalg/ParallelIstlInformation.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/linalg/ParallelOverlappingILU0.hpp
|
|
|
|
opm/simulators/linalg/ParallelRestrictedAdditiveSchwarz.hpp
|
2019-05-20 06:23:57 -05:00
|
|
|
opm/simulators/linalg/PressureSolverPolicy.hpp
|
|
|
|
opm/simulators/linalg/PressureTransferPolicy.hpp
|
2019-05-29 09:21:34 -05:00
|
|
|
opm/simulators/linalg/PreconditionerFactory.hpp
|
2019-05-20 07:31:36 -05:00
|
|
|
opm/simulators/linalg/PreconditionerWithUpdate.hpp
|
2021-06-09 03:35:22 -05:00
|
|
|
opm/simulators/linalg/PropertyTree.hpp
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/residreductioncriterion.hh
|
2022-08-24 02:57:49 -05:00
|
|
|
opm/simulators/linalg/SmallDenseMatrixUtils.hpp
|
2024-08-09 03:38:35 -05:00
|
|
|
opm/simulators/linalg/setupPropertyTree.hpp
|
|
|
|
opm/simulators/linalg/superlubackend.hh
|
|
|
|
opm/simulators/linalg/twolevelmethodcpr.hh
|
|
|
|
opm/simulators/linalg/vertexborderlistfromgrid.hh
|
|
|
|
opm/simulators/linalg/weightedresidreductioncriterion.hh
|
2020-06-24 08:55:43 -05:00
|
|
|
opm/simulators/linalg/WellOperators.hpp
|
2020-05-13 06:53:45 -05:00
|
|
|
opm/simulators/linalg/WriteSystemMatrixHelper.hpp
|
2017-02-10 06:01:50 -06:00
|
|
|
opm/simulators/timestepping/AdaptiveSimulatorTimer.hpp
|
2024-01-31 07:14:50 -06:00
|
|
|
opm/simulators/timestepping/AdaptiveTimeStepping.hpp
|
2018-10-25 04:57:47 -05:00
|
|
|
opm/simulators/timestepping/ConvergenceReport.hpp
|
2024-02-05 12:22:15 -06:00
|
|
|
opm/simulators/timestepping/EclTimeSteppingParams.hpp
|
2017-02-10 06:01:50 -06:00
|
|
|
opm/simulators/timestepping/TimeStepControl.hpp
|
|
|
|
opm/simulators/timestepping/TimeStepControlInterface.hpp
|
|
|
|
opm/simulators/timestepping/SimulatorTimer.hpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/timestepping/SimulatorReport.hpp
|
2017-02-10 06:01:50 -06:00
|
|
|
opm/simulators/timestepping/SimulatorTimerInterface.hpp
|
2018-11-13 07:01:01 -06:00
|
|
|
opm/simulators/timestepping/gatherConvergenceReport.hpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/utils/BlackoilPhases.hpp
|
2023-06-30 04:18:27 -05:00
|
|
|
opm/simulators/utils/ComponentName.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/utils/DeferredLogger.hpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/utils/DeferredLoggingErrorHelpers.hpp
|
2020-01-22 03:27:36 -06:00
|
|
|
opm/simulators/utils/ParallelEclipseState.hpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/utils/ParallelFileMerger.hpp
|
2023-09-12 08:43:16 -05:00
|
|
|
opm/simulators/utils/ParallelNLDDPartitioningZoltan.hpp
|
2019-10-10 16:06:55 -05:00
|
|
|
opm/simulators/utils/ParallelRestart.hpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/utils/PressureAverage.hpp
|
2023-08-01 07:53:39 -05:00
|
|
|
opm/simulators/utils/PropsDataHandle.hpp
|
2023-01-31 04:41:41 -06:00
|
|
|
opm/simulators/utils/SerializationPackers.hpp
|
2021-10-12 05:01:42 -05:00
|
|
|
opm/simulators/utils/VectorVectorDataHandle.hpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/utils/compressPartition.hpp
|
|
|
|
opm/simulators/utils/gatherDeferredLogger.hpp
|
|
|
|
opm/simulators/utils/moduleVersion.hpp
|
|
|
|
opm/simulators/utils/phaseUsageFromDeck.hpp
|
2023-06-06 11:45:10 -05:00
|
|
|
opm/simulators/utils/readDeck.hpp
|
2024-06-25 03:20:41 -05:00
|
|
|
opm/simulators/utils/satfunc/RelpermDiagnostics.hpp
|
2022-01-25 05:09:30 -06:00
|
|
|
opm/simulators/wells/ALQState.hpp
|
|
|
|
opm/simulators/wells/BlackoilWellModel.hpp
|
|
|
|
opm/simulators/wells/BlackoilWellModel_impl.hpp
|
2022-10-24 02:36:05 -05:00
|
|
|
opm/simulators/wells/BlackoilWellModelConstraints.hpp
|
2022-10-24 02:36:05 -05:00
|
|
|
opm/simulators/wells/BlackoilWellModelGeneric.hpp
|
2022-10-24 02:36:05 -05:00
|
|
|
opm/simulators/wells/BlackoilWellModelGuideRates.hpp
|
2022-10-24 02:36:05 -05:00
|
|
|
opm/simulators/wells/BlackoilWellModelRestart.hpp
|
2023-08-08 08:40:32 -05:00
|
|
|
opm/simulators/wells/ConnFiltrateData.hpp
|
2024-02-19 05:04:18 -06:00
|
|
|
opm/simulators/wells/FractionCalculator.hpp
|
2022-01-25 05:09:30 -06:00
|
|
|
opm/simulators/wells/GasLiftCommon.hpp
|
|
|
|
opm/simulators/wells/GasLiftGroupInfo.hpp
|
|
|
|
opm/simulators/wells/GasLiftSingleWellGeneric.hpp
|
|
|
|
opm/simulators/wells/GasLiftSingleWell.hpp
|
|
|
|
opm/simulators/wells/GasLiftSingleWell_impl.hpp
|
|
|
|
opm/simulators/wells/GasLiftStage2.hpp
|
|
|
|
opm/simulators/wells/GasLiftWellState.hpp
|
|
|
|
opm/simulators/wells/GlobalWellInfo.hpp
|
2023-08-07 05:39:26 -05:00
|
|
|
opm/simulators/wells/GroupEconomicLimitsChecker.hpp
|
2022-01-25 05:09:30 -06:00
|
|
|
opm/simulators/wells/GroupState.hpp
|
|
|
|
opm/simulators/wells/MSWellHelpers.hpp
|
|
|
|
opm/simulators/wells/MultisegmentWell.hpp
|
|
|
|
opm/simulators/wells/MultisegmentWell_impl.hpp
|
2022-11-18 04:57:37 -06:00
|
|
|
opm/simulators/wells/MultisegmentWellAssemble.hpp
|
2022-12-01 02:23:52 -06:00
|
|
|
opm/simulators/wells/MultisegmentWellEquations.hpp
|
|
|
|
opm/simulators/wells/MultisegmentWellEval.hpp
|
|
|
|
opm/simulators/wells/MultisegmentWellGeneric.hpp
|
2022-11-07 23:38:12 -06:00
|
|
|
opm/simulators/wells/MultisegmentWellPrimaryVariables.hpp
|
2022-12-19 06:05:07 -06:00
|
|
|
opm/simulators/wells/MultisegmentWellSegments.hpp
|
2023-06-06 14:03:48 -05:00
|
|
|
opm/simulators/wells/ParallelPAvgCalculator.hpp
|
2023-06-06 11:45:10 -05:00
|
|
|
opm/simulators/wells/ParallelPAvgDynamicSourceData.hpp
|
2023-06-06 14:03:48 -05:00
|
|
|
opm/simulators/wells/ParallelWBPCalculation.hpp
|
2022-01-25 05:09:30 -06:00
|
|
|
opm/simulators/wells/ParallelWellInfo.hpp
|
2021-06-04 06:53:13 -05:00
|
|
|
opm/simulators/wells/PerfData.hpp
|
2019-10-23 02:09:45 -05:00
|
|
|
opm/simulators/wells/PerforationData.hpp
|
2019-06-20 02:09:19 -05:00
|
|
|
opm/simulators/wells/RateConverter.hpp
|
2021-09-06 07:20:40 -05:00
|
|
|
opm/simulators/wells/RegionAttributeHelpers.hpp
|
|
|
|
opm/simulators/wells/RegionAverageCalculator.hpp
|
2021-08-03 13:05:14 -05:00
|
|
|
opm/simulators/wells/SingleWellState.hpp
|
2022-01-25 05:09:30 -06:00
|
|
|
opm/simulators/wells/StandardWell.hpp
|
|
|
|
opm/simulators/wells/StandardWell_impl.hpp
|
2022-11-18 04:57:37 -06:00
|
|
|
opm/simulators/wells/StandardWellAssemble.hpp
|
2022-11-10 13:23:25 -06:00
|
|
|
opm/simulators/wells/StandardWellConnections.hpp
|
2022-11-11 14:37:08 -06:00
|
|
|
opm/simulators/wells/StandardWellEquations.hpp
|
|
|
|
opm/simulators/wells/StandardWellEval.hpp
|
2022-11-07 23:38:12 -06:00
|
|
|
opm/simulators/wells/StandardWellPrimaryVariables.hpp
|
2020-03-27 07:27:45 -05:00
|
|
|
opm/simulators/wells/TargetCalculator.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/wells/VFPHelpers.hpp
|
|
|
|
opm/simulators/wells/VFPInjProperties.hpp
|
|
|
|
opm/simulators/wells/VFPProdProperties.hpp
|
2022-01-25 05:09:30 -06:00
|
|
|
opm/simulators/wells/VFPProperties.hpp
|
2022-10-31 10:03:59 -05:00
|
|
|
opm/simulators/wells/WellAssemble.hpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellBhpThpCalculator.hpp
|
2022-01-25 05:09:30 -06:00
|
|
|
opm/simulators/wells/WellConnectionAuxiliaryModule.hpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellConstraints.hpp
|
2022-10-27 03:43:44 -05:00
|
|
|
opm/simulators/wells/WellConvergence.hpp
|
2023-07-07 03:51:06 -05:00
|
|
|
opm/simulators/wells/WellFilterCake.hpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellGroupConstraints.hpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellGroupControls.hpp
|
2019-08-07 07:13:11 -05:00
|
|
|
opm/simulators/wells/WellGroupHelpers.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/wells/WellHelpers.hpp
|
|
|
|
opm/simulators/wells/WellInterface.hpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellInterfaceGeneric.hpp
|
2019-05-07 06:06:02 -05:00
|
|
|
opm/simulators/wells/WellInterface_impl.hpp
|
2020-10-08 17:17:16 -05:00
|
|
|
opm/simulators/wells/WellProdIndexCalculator.hpp
|
2022-01-25 05:09:30 -06:00
|
|
|
opm/simulators/wells/WellState.hpp
|
2022-10-19 02:55:14 -05:00
|
|
|
opm/simulators/wells/WellTest.hpp
|
2022-01-25 05:09:30 -06:00
|
|
|
opm/simulators/wells/WGState.hpp
|
2016-04-08 06:07:44 -05:00
|
|
|
)
|
2024-03-11 09:30:51 -05:00
|
|
|
if (USE_BDA_BRIDGE)
|
|
|
|
list (APPEND PUBLIC_HEADER_FILES
|
|
|
|
opm/simulators/linalg/bda/amgclSolverBackend.hpp
|
|
|
|
opm/simulators/linalg/bda/BdaBridge.hpp
|
|
|
|
opm/simulators/linalg/bda/BdaResult.hpp
|
|
|
|
opm/simulators/linalg/bda/BdaSolver.hpp
|
2024-06-04 08:13:54 -05:00
|
|
|
opm/simulators/linalg/bda/CprCreation.hpp
|
2024-06-04 02:47:03 -05:00
|
|
|
opm/simulators/linalg/bda/Preconditioner.hpp
|
2024-06-04 08:13:54 -05:00
|
|
|
opm/simulators/linalg/bda/Misc.hpp
|
2024-06-03 23:28:50 -05:00
|
|
|
opm/simulators/linalg/bda/opencl/openclBILU0.hpp
|
2024-03-11 09:30:51 -05:00
|
|
|
opm/simulators/linalg/bda/BlockedMatrix.hpp
|
2024-06-03 23:28:50 -05:00
|
|
|
opm/simulators/linalg/bda/opencl/openclCPR.hpp
|
2024-03-11 09:30:51 -05:00
|
|
|
opm/simulators/linalg/bda/cuda/cuda_header.hpp
|
|
|
|
opm/simulators/linalg/bda/cuda/cusparseSolverBackend.hpp
|
|
|
|
opm/simulators/linalg/bda/opencl/ChowPatelIlu.hpp
|
2024-06-03 23:28:50 -05:00
|
|
|
opm/simulators/linalg/bda/opencl/openclBISAI.hpp
|
2024-03-11 09:30:51 -05:00
|
|
|
opm/simulators/linalg/bda/Reorder.hpp
|
|
|
|
opm/simulators/linalg/bda/opencl/opencl.hpp
|
|
|
|
opm/simulators/linalg/bda/opencl/openclKernels.hpp
|
|
|
|
opm/simulators/linalg/bda/opencl/OpenclMatrix.hpp
|
2024-06-04 02:47:03 -05:00
|
|
|
opm/simulators/linalg/bda/opencl/openclPreconditioner.hpp
|
2024-03-11 09:30:51 -05:00
|
|
|
opm/simulators/linalg/bda/opencl/openclSolverBackend.hpp
|
|
|
|
opm/simulators/linalg/bda/opencl/openclWellContributions.hpp
|
|
|
|
opm/simulators/linalg/bda/Matrix.hpp
|
|
|
|
opm/simulators/linalg/bda/MultisegmentWellContribution.hpp
|
2024-06-04 10:13:13 -05:00
|
|
|
opm/simulators/linalg/bda/rocm/hipKernels.hpp
|
2024-06-03 23:19:28 -05:00
|
|
|
opm/simulators/linalg/bda/rocm/rocalutionSolverBackend.hpp
|
2024-06-04 05:17:49 -05:00
|
|
|
opm/simulators/linalg/bda/rocm/rocsparseBILU0.hpp
|
2024-06-04 10:13:13 -05:00
|
|
|
opm/simulators/linalg/bda/rocm/rocsparseCPR.hpp
|
2024-06-04 05:17:49 -05:00
|
|
|
opm/simulators/linalg/bda/rocm/rocsparsePreconditioner.hpp
|
2024-06-03 23:19:28 -05:00
|
|
|
opm/simulators/linalg/bda/rocm/rocsparseSolverBackend.hpp
|
|
|
|
opm/simulators/linalg/bda/rocm/rocsparseWellContributions.hpp
|
2024-06-04 10:13:13 -05:00
|
|
|
opm/simulators/linalg/bda/rocm/rocsparseMatrix.hpp
|
2024-03-11 09:30:51 -05:00
|
|
|
opm/simulators/linalg/bda/WellContributions.hpp
|
|
|
|
opm/simulators/linalg/ISTLSolverBda.hpp
|
|
|
|
)
|
|
|
|
endif()
|
2020-05-20 04:27:28 -05:00
|
|
|
|
2024-06-20 11:30:50 -05:00
|
|
|
if (HAVE_ECL_INPUT)
|
|
|
|
list (APPEND PUBLIC_HEADER_FILES
|
2024-09-02 11:40:59 -05:00
|
|
|
opm/simulators/utils/satfunc/OilPhaseConsistencyChecks.hpp
|
|
|
|
opm/simulators/utils/satfunc/PhaseCheckBase.hpp
|
2024-06-20 11:30:50 -05:00
|
|
|
opm/simulators/utils/satfunc/SatfuncConsistencyChecks.hpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2024-02-02 12:32:10 -06:00
|
|
|
if (Damaris_FOUND AND MPI_FOUND AND USE_DAMARIS_LIB)
|
2024-02-02 04:10:08 -06:00
|
|
|
list (APPEND PUBLIC_HEADER_FILES
|
|
|
|
opm/simulators/utils/DamarisKeywords.hpp
|
|
|
|
opm/simulators/utils/DamarisOutputModule.hpp
|
2024-06-28 05:17:13 -05:00
|
|
|
opm/simulators/flow/DamarisParameters.hpp
|
2024-02-02 04:10:08 -06:00
|
|
|
opm/simulators/flow/DamarisWriter.hpp
|
|
|
|
opm/simulators/utils/DamarisVar.hpp
|
|
|
|
opm/simulators/utils/GridDataOutput.hpp
|
|
|
|
opm/simulators/utils/GridDataOutput_impl.hpp
|
2024-02-02 12:32:10 -06:00
|
|
|
)
|
2023-09-09 16:02:09 -05:00
|
|
|
endif()
|
|
|
|
|
2023-01-31 03:40:42 -06:00
|
|
|
if(HDF5_FOUND)
|
|
|
|
list(APPEND PUBLIC_HEADER_FILES
|
2024-01-29 02:42:49 -06:00
|
|
|
opm/simulators/utils/HDF5Serializer.hpp
|
2023-01-31 03:40:42 -06:00
|
|
|
opm/simulators/utils/HDF5File.hpp
|
|
|
|
)
|
2024-01-29 02:58:02 -06:00
|
|
|
list(APPEND MAIN_SOURCE_FILES
|
|
|
|
opm/simulators/utils/HDF5Serializer.cpp
|
|
|
|
)
|
2023-01-31 03:40:42 -06:00
|
|
|
endif()
|
|
|
|
|
2020-05-20 04:27:28 -05:00
|
|
|
list (APPEND EXAMPLE_SOURCE_FILES
|
2024-08-09 03:38:35 -05:00
|
|
|
examples/art2dgf.cpp
|
|
|
|
examples/co2injection_flash_ecfv.cpp
|
|
|
|
examples/co2injection_flash_ni_ecfv.cpp
|
|
|
|
examples/co2injection_flash_ni_vcfv.cpp
|
|
|
|
examples/co2injection_flash_vcfv.cpp
|
|
|
|
examples/co2injection_immiscible_ecfv.cpp
|
|
|
|
examples/co2injection_immiscible_ni_ecfv.cpp
|
|
|
|
examples/co2injection_immiscible_ni_vcfv.cpp
|
|
|
|
examples/co2injection_immiscible_vcfv.cpp
|
|
|
|
examples/co2injection_ncp_ecfv.cpp
|
|
|
|
examples/co2injection_ncp_ni_ecfv.cpp
|
|
|
|
examples/co2injection_ncp_ni_vcfv.cpp
|
|
|
|
examples/co2injection_ncp_vcfv.cpp
|
|
|
|
examples/co2injection_pvs_ecfv.cpp
|
|
|
|
examples/co2injection_pvs_ni_ecfv.cpp
|
|
|
|
examples/co2injection_pvs_ni_vcfv.cpp
|
|
|
|
examples/co2_ptflash_ecfv.cpp
|
|
|
|
examples/co2injection_pvs_vcfv.cpp
|
|
|
|
examples/cuvette_pvs.cpp
|
|
|
|
examples/diffusion_flash.cpp
|
|
|
|
examples/diffusion_ncp.cpp
|
|
|
|
examples/diffusion_pvs.cpp
|
|
|
|
examples/groundwater_immiscible.cpp
|
|
|
|
examples/infiltration_pvs.cpp
|
|
|
|
examples/lens_immiscible_ecfv_ad.cpp
|
|
|
|
examples/lens_immiscible_ecfv_ad_23.cpp
|
|
|
|
examples/lens_immiscible_ecfv_ad_trans.cpp
|
|
|
|
examples/lens_immiscible_vcfv_ad.cpp
|
|
|
|
examples/lens_immiscible_vcfv_fd.cpp
|
|
|
|
examples/lens_richards_ecfv.cpp
|
|
|
|
examples/lens_richards_vcfv.cpp
|
|
|
|
examples/obstacle_immiscible.cpp
|
|
|
|
examples/obstacle_ncp.cpp
|
|
|
|
examples/obstacle_pvs.cpp
|
|
|
|
examples/outflow_pvs.cpp
|
|
|
|
examples/powerinjection_darcy_ad.cpp
|
|
|
|
examples/powerinjection_darcy_fd.cpp
|
|
|
|
examples/powerinjection_forchheimer_ad.cpp
|
|
|
|
examples/powerinjection_forchheimer_fd.cpp
|
|
|
|
examples/reservoir_blackoil_ecfv.cpp
|
|
|
|
examples/reservoir_blackoil_vcfv.cpp
|
|
|
|
examples/reservoir_ncp_ecfv.cpp
|
|
|
|
examples/reservoir_ncp_vcfv.cpp
|
2020-05-20 04:27:28 -05:00
|
|
|
examples/printvfp.cpp
|
2024-08-09 03:38:35 -05:00
|
|
|
examples/tutorial1.cpp
|
|
|
|
examples/waterair_pvs_ni.cpp
|
2023-02-09 06:25:29 -06:00
|
|
|
)
|
|
|
|
if(HDF5_FOUND)
|
|
|
|
list (APPEND EXAMPLE_SOURCE_FILES
|
|
|
|
examples/opmrst_inspect.cpp
|
2020-05-20 04:27:28 -05:00
|
|
|
)
|
2023-02-09 06:25:29 -06:00
|
|
|
endif()
|
2024-08-09 03:38:35 -05:00
|
|
|
if(dune-alugrid_FOUND)
|
|
|
|
list (APPEND EXAMPLE_SOURCE_FILES
|
|
|
|
examples/finger_immiscible_ecfv.cpp
|
|
|
|
examples/finger_immiscible_vcfv.cpp
|
|
|
|
examples/fracture_discretefracture.cpp
|
|
|
|
)
|
|
|
|
endif()
|