diff --git a/doc/utils/sphinx-config/false_positives.txt b/doc/utils/sphinx-config/false_positives.txt index c748afa841..9e8fb042a0 100644 --- a/doc/utils/sphinx-config/false_positives.txt +++ b/doc/utils/sphinx-config/false_positives.txt @@ -2360,6 +2360,7 @@ Ng nghost Nghost Ngpu +ngpus Ngyuen nh nharmonic diff --git a/src/library.cpp b/src/library.cpp index e7f3471d64..1e3c96cdcf 100644 --- a/src/library.cpp +++ b/src/library.cpp @@ -1017,13 +1017,13 @@ internally by the :doc:`Fortran interface ` 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:``. + See :doc:`Speed_kokkos`. * - kokkos_nthreads - Number of Kokkos threads per MPI process, 0 if Kokkos is not active. - See :doc:``. + 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:``. + - 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 diff --git a/unittest/c-library/test_library_properties.cpp b/unittest/c-library/test_library_properties.cpp index 56486fba6c..bb0f6e2894 100644 --- a/unittest/c-library/test_library_properties.cpp +++ b/unittest/c-library/test_library_properties.cpp @@ -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); }