Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove mentions of librt as a third-party library #495

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/source/API/core/Macros.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,6 @@ These defines give information about what third-party libaries Kokkos was compil
+===============================+=======================================================================================================================+
| ``KOKKOS_ENABLE_HWLOC`` | Defined if `libhwloc <https://www.open-mpi.org/projects/hwloc/>`_ is enabled for NUMA and architecture information. |
+-------------------------------+-----------------------------------------------------------------------------------------------------------------------+
| ``KOKKOS_ENABLE_LIBRT`` | Defined if Kokkos links to the POSIX librt for backwards compatibility. |
+-------------------------------+-----------------------------------------------------------------------------------------------------------------------+
| ``KOKKOS_ENABLE_LIBDL`` | Defined if Kokkos links to the dynamic linker (libdl). |
+-------------------------------+-----------------------------------------------------------------------------------------------------------------------+
| ``KOKKOS_ENABLE_LIBQUADMATH`` | Defined if Kokkos links to the `GCC Quad-Precision Math Library API <https://gcc.gnu.org/onlinedocs/libquadmath/>`_. |
Expand Down
2 changes: 1 addition & 1 deletion docs/source/ProgrammingGuide/Compiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Variable | Description
`KOKKOS_ARCH (IN)` | The backend architecture to build for.
`Options` <br><br><br> `Default` | KNL, KNC, SNB, HSW, BDW, Kepler, Kepler30, Kepler35, Kepler37, Maxwell, Maxwell50, Pascal60, Pascal61, ARMv8, ARMv81, ARMv8-ThunderX, BGQ, Power7, Power8 <br><br> (no particular architecture flags are set).
`KOKKOS_USE_TPLS (IN)` | Enable optional third party libraries.
`Options` <br> `Default` | hwloc, librt <br> (none)
`Options` <br> `Default` | hwloc, libdl <br> (none)
`KOKKOS_OPTIONS (IN)` | Enable optional settings
`Options` <br> `Default` | aggressive_vectorization <br> (none)
`KOKKOS_CUDA_OPTIONS (IN)` | Enable optional settings specific to CUDA.
Expand Down
7 changes: 0 additions & 7 deletions docs/source/keywords.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,6 @@ The following options control enabling TPLs:
* * ``Kokkos_ENABLE_LIBDL``
* Whether to enable the LIBDL library
* ``ON``
* * ``Kokkos_ENABLE_LIBRT``
* Whether to enable the LIBRT library
* ``OFF``

The following options control finding and configuring non-CMake TPLs:

Expand All @@ -201,10 +198,6 @@ The following options control finding and configuring non-CMake TPLs:
* Location of LIBDL install prefix
* PATH Default:

* * ``Kokkos_LIBRT_DIR`` or ``LIBRT_ROOT``
* Location of LIBRT install prefix
* PATH Default:

The following options control ``find_package`` paths for CMake-based TPLs:

.. list-table::
Expand Down
Loading