documentation corrections

This commit is contained in:
Axel Kohlmeyer
2022-11-17 11:48:13 -05:00
parent 096a70363b
commit 15bf4a281d
3 changed files with 6 additions and 5 deletions

View File

@ -2360,6 +2360,7 @@ Ng
nghost
Nghost
Ngpu
ngpus
Ngyuen
nh
nharmonic

View File

@ -1017,13 +1017,13 @@ internally by the :doc:`Fortran interface <Fortran>` and are not likely to be us
See :doc:`create_box`.
* - kokkos_active
- 1 if the KOKKOS package is compiled in **and** activated, 0 if not.
See :doc:`<Speed_kokkos>`.
See :doc:`Speed_kokkos`.
* - kokkos_nthreads
- Number of Kokkos threads per MPI process, 0 if Kokkos is not active.
See :doc:`<Speed_kokkos>`.
See :doc:`Speed_kokkos`.
* - kokkos_ngpus
- Number of Kokkos gpus per MPI process, 0 if Kokkos is not active or no GPU support.
See :doc:`<Speed_kokkos>`.
- Number of Kokkos gpus per physical node, 0 if Kokkos is not active or no GPU support.
See :doc:`Speed_kokkos`.
* - nthreads
- Number of requested OpenMP threads per MPI process for LAMMPS' execution
* - newton_bond

View File

@ -570,6 +570,6 @@ TEST(SystemSettings, kokkos)
EXPECT_EQ(lammps_extract_setting(lmp, "kokkos_active"), 1);
EXPECT_EQ(lammps_extract_setting(lmp, "kokkos_nthreads"), 4);
EXPECT_EQ(lammps_extract_setting(lmp, "kokkos_ngpus"), 0);
EXPECT_EQ(lammps_extract_setting(lmp, "kokkos_ngpus"), 0);
lammps_close(lmp);
}