Skip to content

Commit

Permalink
the issue with the communicator being an int is cray mpich only
Browse files Browse the repository at this point in the history
  • Loading branch information
PDoakORNL committed Oct 16, 2024
1 parent 763aabf commit 5a405b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/dca/parallel/no_concurrency/serial_gang.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class SerialGang {
}

auto get() const {
#ifdef DCA_HAVE_MPI
#if defined (CRAY_MPICH_VERSION) && defined (DCA_HAVE_MPI)
return 0;
#else
return nullptr;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class SerialProcessorGrouping {
}

auto get() const {
#ifdef DCA_HAVE_MPI
#if defined (CRAY_MPICH_VERSION) && defined (DCA_HAVE_MPI)
return 0;
#else
return nullptr;
Expand Down

0 comments on commit 5a405b0

Please sign in to comment.