From 0f88513f65db23a4834e2ed1859f13f278fb2172 Mon Sep 17 00:00:00 2001 From: Diaz Date: Mon, 21 Jan 2019 12:29:31 -0500 Subject: [PATCH] updated comm tiled to have multi --- src/comm_tiled.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/comm_tiled.h b/src/comm_tiled.h index 13ecbc4b01..e5be7639ea 100644 --- a/src/comm_tiled.h +++ b/src/comm_tiled.h @@ -69,13 +69,14 @@ class CommTiled : public Comm { int **size_reverse_recv; // # of values to recv in each reverse swap/proc int **forward_recv_offset; // forward comm offsets in buf_recv per swap/proc int **reverse_recv_offset; // reverse comm offsets in buf_recv per swap/proc - + double **cutghostmulti; // cutghost on a per-type basis int ***sendlist; // list of atoms to send per swap/proc int **maxsendlist; // max size of send list per swap/proc int **pbc_flag; // general flag for sending atoms thru PBC int ***pbc; // dimension flags for PBC adjustments double ***sendbox; // bounding box of atoms to send per swap/proc + double ****sendbox_multi; // bounding box of atoms to send per swap/proc for multi comm // exchange comm info, proc lists do not include self @@ -147,6 +148,7 @@ class CommTiled : public Comm { void grow_swap_send(int, int, int); // grow swap arrays for send and recv void grow_swap_recv(int, int); void deallocate_swap(int); // deallocate swap arrays + }; }