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: v9.5.2~4^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47d8153fe910e11f19116b528613ebf851011767;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 f7d58dec3d..261c774ae9 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;