From: Matthias Maier Date: Tue, 23 Jan 2024 20:34:26 +0000 (-0600) Subject: base/mpi.h: also instantiate for signed long long int X-Git-Tag: relicensing~112^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16527%2Fhead;p=dealii.git base/mpi.h: also instantiate for signed long long int --- diff --git a/cmake/config/template-arguments.in b/cmake/config/template-arguments.in index 151402614b..96c0175391 100644 --- a/cmake/config/template-arguments.in +++ b/cmake/config/template-arguments.in @@ -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; @@ -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;