Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
SWIFT
SWIFTsim
Merge requests
!82
Fix MPI tag collision Issue
#68
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix MPI tag collision Issue
#68
mpi_tag_collision
into
master
Overview
0
Commits
1
Changes
Merged
James Willis
requested to merge
mpi_tag_collision
into
master
9 years ago
Overview
0
Commits
1
Changes
-
Expand
Increased the maximum cell tag to 2^29 to prevent the MPI tag collision issue
#68 (closed)
.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
6c9d0947
1 commit,
9 years ago
+
6
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/cell.h
+
6
−
1
Options
@@ -29,7 +29,12 @@ struct space;
/* Some constants. */
#define cell_sid_dt 13
#define cell_max_tag (1 << 16)
/* Max tag size set to 2^29 to take into account some MPI implementations
* that use 2^31 as the upper bound on MPI tags and the fact that
* cell_next_tag is multiplied by 2 when passed to an MPI function.
* The maximum was lowered by a further factor of 2 to be on the safe side.*/
#define cell_max_tag (1 << 29)
/* Global variables. */
extern int cell_next_tag;
Loading