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

Document removals in version 4.3 #465

Merged
merged 2 commits into from
Oct 26, 2023
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: 1 addition & 1 deletion docs/source/API/core/initialize_finalize/InitArguments.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ InitArguments

Defined in ``<Kokkos_Core.hpp>`` header.

.. warning:: Deprecated since 3.7, **use** ``Kokkos::InitializationSettings`` **instead**
.. warning:: Deprecated since 3.7, removed in 4.3, **use** ``Kokkos::InitializationSettings`` **instead**

Interface
---------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/API/core/numerics/mathematical-constants.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Notes
.. |KnownIssues| replace:: known issues

* The mathematical constants are available in ``Kokkos::Experimental::`` since Kokkos 3.6
* They were "promoted" to the ``Kokkos::numbers`` namespace in 4.0
* They were "promoted" to the ``Kokkos::numbers`` namespace in 4.0 and removed from ``Kokkos::Experimental::`` in 4.3
* Passing mathematical constants by reference or taking their address in device code is not supported by some toolchains and hence not portable. (See |KnownIssues|_)

------------
Expand Down
3 changes: 2 additions & 1 deletion docs/source/API/core/numerics/mathematical-functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ Notes
compilation errors with unqualified calls to math functions. Use explicit
qualification (``Kokkos::sqrt``) or using-declaration (``using
Kokkos::sqrt;``) instead. (See |KnownIssues|_)
* Math functions were removed from the ``Kokkos::Exerimental::`` namespace in version 4.3

------------

Expand All @@ -393,4 +394,4 @@ See also

`Mathematical constant <mathematical-constants.html>`_

`Numeric traits <numeric-traits.html>`_
`Numeric traits <numeric-traits.html>`_
Loading