Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
14bee5dd
Commit
14bee5dd
authored
1 year ago
by
Simon Praetorius
Browse files
Options
Downloads
Patches
Plain Diff
Pass enable flag for MPI directly to compiler
parent
f7f70723
No related branches found
Branches containing commit
No related tags found
1 merge request
!1310
Handle optional dependency MPI by directly passing HAVE_MPI flag
Pipeline
#66341
passed with warnings
1 year ago
Stage: .pre
Stage: test
Stage: downstream
Pipeline: Dune Nightly Test
#66342
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmake/modules/AddMPIFlags.cmake
+2
-2
2 additions, 2 deletions
cmake/modules/AddMPIFlags.cmake
config.h.cmake
+0
-3
0 additions, 3 deletions
config.h.cmake
with
2 additions
and
5 deletions
cmake/modules/AddMPIFlags.cmake
+
2
−
2
View file @
14bee5dd
...
...
@@ -24,7 +24,7 @@ set_package_properties("MPI" PROPERTIES
if
(
MPI_C_FOUND
)
set
(
HAVE_MPI
${
MPI_C_FOUND
}
)
dune_register_package_flags
(
COMPILE_DEFINITIONS
"
ENABL
E_MPI=1"
dune_register_package_flags
(
COMPILE_DEFINITIONS
"
HAV
E_MPI=1"
LIBRARIES MPI::MPI_C
)
endif
()
...
...
@@ -36,7 +36,7 @@ function(add_dune_mpi_flags)
if
(
MPI_C_FOUND
)
foreach
(
target
${
targets
}
)
target_link_libraries
(
${
target
}
PUBLIC MPI::MPI_C
)
target_compile_definitions
(
${
target
}
PUBLIC
"
ENABL
E_MPI=1"
)
target_compile_definitions
(
${
target
}
PUBLIC
"
HAV
E_MPI=1"
)
endforeach
(
target
)
endif
()
endfunction
(
add_dune_mpi_flags
)
This diff is collapsed.
Click to expand it.
config.h.cmake
+
0
−
3
View file @
14bee5dd
...
...
@@ -36,9 +36,6 @@
/* Define if you have LAPACK library. */
#cmakedefine HAVE_LAPACK 1
/* Define if you have the MPI library. */
#cmakedefine HAVE_MPI ENABLE_MPI
/* Deactivate cxx bindings for MPI */
#if defined(HAVE_MPI) && HAVE_MPI
#define MPICH_SKIP_MPICXX 1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment