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
!29
feature/use MPI_Type_create_hindexed instead of MPI_Type_hindexed which is deprecated for MPI>=2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feature/use MPI_Type_create_hindexed instead of MPI_Type_hindexed which is deprecated for MPI>=2
remove_mpi_type_hindexed_warning
into
master
Overview
1
Commits
1
Pipelines
0
Changes
Merged
Marco Agnese
requested to merge
remove_mpi_type_hindexed_warning
into
master
9 years ago
Overview
1
Commits
1
Pipelines
0
Changes
-
Expand
:)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8212660d
1 commit,
9 years ago
+
2
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dune/common/parallel/communicator.hh
+
2
−
3
Options
@@ -1012,9 +1012,8 @@ namespace Dune
// Create data type
MPI_Datatype* type = &( send ? messageTypes[process->first].first : messageTypes[process->first].second);
MPI_Type_hindexed(info.elements, info.length, info.displ,
MPITraits<typename CommPolicy<V>::IndexedType>::getType(),
type);
MPI_Type_create_hindexed(info.elements, info.length, info.displ,
MPITraits<typename CommPolicy<V>::IndexedType>::getType(), type);
MPI_Type_commit(type);
// Deallocate memory
info.free();
Loading