-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
76 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
docs/source/API/core/initialize_finalize/push_finalize_hook.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
``push_finalize_hook`` | ||
====================== | ||
|
||
.. role::cpp(code) | ||
:language: cpp | ||
Defined in header ``<Kokkos_Core.hpp>`` | ||
|
||
Usage | ||
----- | ||
|
||
.. code-block:: cpp | ||
Kokkos::push_finalize_hook(func); | ||
Registers the callable object ``func`` to be called when Kokkos execution | ||
environment is terminated. | ||
|
||
The functions registered via ``Kokkos::push_finalize_hook()`` will be called in | ||
reverse order when entering ``Kokkos::finalize()``, before releasing acquired | ||
resources and finalizing all backends. | ||
|
||
If a function exits via a thrown exception, ``std::terminate`` is called. | ||
|
||
Interface | ||
--------- | ||
|
||
.. cppkokkos:Function:: void push_finalize_hook(std::function<void()> func); | ||
Register the function object ``func`` to be called when entering | ||
``Kokkos::finalize()`` | ||
|
||
|
||
|
||
|
||
Example | ||
------- | ||
|
||
.. code-block:: cpp | ||
#include <Kokkos_Core.hpp> | ||
#include <iostream> | ||
void my_hook() { | ||
std::cout << "Cruel world!\n"; | ||
} | ||
int main(int argc, char* argv[]) { | ||
Kokkos::initialize(argc, argv); | ||
Kokkos::push_finalize_hook(my_hook); | ||
Kokkos::push_finalize_hook([]{ std::cout << "Goodbye\n"; }); | ||
std::cout << "Calling Kokkos::finalize() ...\n"; | ||
Kokkos::finalize(); | ||
} | ||
Output: | ||
|
||
.. code-block:: | ||
Calling Kokkos::finalize() ... | ||
Goodbye | ||
Cruel world! | ||
See also | ||
-------- | ||
* `Kokkos::finalize <finalize.html>`_: terminates the Kokkos execution environment |