Fuse some Kokkos kernels to reduce launch latency for small systems

This commit is contained in:
Stan Moore
2023-04-28 14:40:59 -06:00
parent 4a608dced6
commit 235372d6e8
14 changed files with 185 additions and 12 deletions

View File

@ -116,15 +116,14 @@ Pair::Pair(LAMMPS *lmp) :
nondefault_history_transfer = 0;
beyond_contact = 0;
// KOKKOS per-fix data masks
// KOKKOS package
execution_space = Host;
datamask_read = ALL_MASK;
datamask_modify = ALL_MASK;
kokkosable = 0;
reverse_comm_device = 0;
copymode = 0;
kokkosable = copymode = 0;
reverse_comm_device = fuse_force_clear_flag = 0;
}
/* ---------------------------------------------------------------------- */