Commit a001a5ce authored by Stan Moore's avatar Stan Moore
Browse files

Fixing memory overflow issue in comm_kokkos

parent 79b005dc
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -93,6 +93,9 @@ CommKokkos::~CommKokkos()

void CommKokkos::init()
{
  maxsend = BUFMIN;
  maxrecv = BUFMIN;

  grow_send_kokkos(maxsend+bufextra,0,Host);
  grow_recv_kokkos(maxrecv,Host);