Fixing memory overflow issue in comm_kokkos

This commit is contained in:
Stan Moore
2017-03-09 12:20:49 -07:00
parent 79b005dc3d
commit a001a5ceb0

View File

@ -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);