apply clang-format
This commit is contained in:
@ -210,8 +210,7 @@ class Fix : protected Pointers {
|
||||
virtual void pack_reverse_grid(int, void *, int, int *){};
|
||||
virtual void unpack_reverse_grid(int, void *, int, int *){};
|
||||
virtual void pack_gather_grid(int, void *){};
|
||||
virtual void unpack_gather_grid(int, void *, void *,
|
||||
int, int, int, int, int, int) {};
|
||||
virtual void unpack_gather_grid(int, void *, void *, int, int, int, int, int, int){};
|
||||
|
||||
virtual double compute_scalar() { return 0.0; }
|
||||
virtual double compute_vector(int) { return 0.0; }
|
||||
|
||||
@ -184,14 +184,10 @@ class GridComm : protected Pointers {
|
||||
int ghost_adjacent_regular();
|
||||
int ghost_adjacent_tiled();
|
||||
|
||||
template <class T>
|
||||
void forward_comm_regular(T *, int, int, int, void *, void *, MPI_Datatype);
|
||||
template <class T>
|
||||
void forward_comm_tiled(T *, int, int, int, void *, void *, MPI_Datatype);
|
||||
template <class T>
|
||||
void reverse_comm_regular(T *, int, int, int, void *, void *, MPI_Datatype);
|
||||
template <class T>
|
||||
void reverse_comm_tiled(T *, int, int, int, void *, void *, MPI_Datatype);
|
||||
template <class T> void forward_comm_regular(T *, int, int, int, void *, void *, MPI_Datatype);
|
||||
template <class T> void forward_comm_tiled(T *, int, int, int, void *, void *, MPI_Datatype);
|
||||
template <class T> void reverse_comm_regular(T *, int, int, int, void *, void *, MPI_Datatype);
|
||||
template <class T> void reverse_comm_tiled(T *, int, int, int, void *, void *, MPI_Datatype);
|
||||
|
||||
virtual void grow_swap();
|
||||
void grow_overlap();
|
||||
|
||||
Reference in New Issue
Block a user