Skip to content

Commit

Permalink
Merge pull request #16527 from tamiko/add_missing_instantiation_2
Browse files Browse the repository at this point in the history
base/mpi.h: also instantiate for signed long long int
  • Loading branch information
tamiko committed Jan 24, 2024
2 parents c9bff13 + c3647f8 commit cf47f8b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmake/config/template-arguments.in
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ ALL_SCALAR_TYPES := {
// Since many of our MPI calls use std::vector we cannot include bool here
MPI_SCALARS := { int;
long int;
long long int;
unsigned int;
unsigned long int;
unsigned long long int;
Expand All @@ -76,6 +77,7 @@ MPI_SCALARS := { int;
// complex types and long double are typically not directly supported on GPUs
MPI_DEVICE_SCALARS := { int;
long int;
long long int;
unsigned int;
unsigned long int;
unsigned long long int;
Expand Down

0 comments on commit cf47f8b

Please sign in to comment.