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
Merge requests
!1230
[python,parallel] improve compatibility of Dune::Communication<...> and mpi4py
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[python,parallel] improve compatibility of Dune::Communication<...> and mpi4py
feature/py-improve-parallel-communication-interface
into
master
Overview
17
Commits
3
Pipelines
8
Changes
7
Merged
Christian Engwer
requested to merge
feature/py-improve-parallel-communication-interface
into
master
2 years ago
Overview
9
Commits
3
Pipelines
8
Changes
7
Expand
add MPI_Comm wrapper
add conversion from mpi4py.MPI.Comm to MPI_Comm wrapper
allow to construct dune.common.Communication from mpi4py.MPI.Comm
additional tests
possibly move to a submodule
parallel
(discussion postponed)
Edited
2 years ago
by
Christian Engwer
0
0
Merge request reports
Compare
master
version 7
f3260bbd
2 years ago
version 6
afd68328
2 years ago
version 5
f8246a46
2 years ago
version 4
3e927c6b
2 years ago
version 3
0a3d6bc1
2 years ago
version 2
08b44223
2 years ago
version 1
efdf1e7c
2 years ago
master (base)
and
latest version
latest version
2c3639b2
3 commits,
2 years ago
version 7
f3260bbd
6 commits,
2 years ago
version 6
afd68328
5 commits,
2 years ago
version 5
f8246a46
5 commits,
2 years ago
version 4
3e927c6b
4 commits,
2 years ago
version 3
0a3d6bc1
3 commits,
2 years ago
version 2
08b44223
2 commits,
2 years ago
version 1
efdf1e7c
1 commit,
2 years ago
7 files
+
178
−
26
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
dune/common/parallel/mpicommunication.hh
+
5
−
0
Options
@@ -129,6 +129,11 @@ namespace Dune
:
Communication
(
MPI_COMM_SELF
)
{}
//! Converting constructor for No_Comm that is interpreted as MPI_COMM_SELF
Communication
(
const
No_Comm
&
)
:
Communication
(
MPI_COMM_SELF
)
{}
//! @copydoc Communication::rank
int
rank
()
const
{
Loading