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

Fix style #4020

Merged
merged 1 commit into from
Mar 5, 2025
Merged
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
8 changes: 4 additions & 4 deletions docs/libcudacxx/extended_api/execution_model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Execution model
===============

CUDA C++ aims to provide `*parallel forward progress* [intro.progress.9] <https://eel.is/c++draft/intro.progress#9>`__
CUDA C++ aims to provide `parallel forward progress [intro.progress.9] <https://eel.is/c++draft/intro.progress#9>`__
for all device threads of execution, facilitating the parallelization of pre-existing C++ applications with CUDA C++.

.. dropdown:: `[intro.progress] <https://eel.is/c++draft/intro.progress>`__
Expand Down Expand Up @@ -40,10 +40,10 @@ The forward progress provided by threads of execution created by the host implem
execute `main <https://en.cppreference.com/w/cpp/language/main_function>`__, `std::thread <https://en.cppreference.com/w/cpp/thread/thread>`__,
and `std::jthread <https://en.cppreference.com/w/cpp/thread/jthread>`__ is implementation-defined behavior of the host
implementation `[intro.progress] <https://eel.is/c++draft/intro.progress>`__.
General-purpose host implementations should provide *concurrent forward progress*.
General-purpose host implementations should provide concurrent forward progress.

If the host implementation provides `*concurrent forward progress* [intro.progress.7] <https://eel.is/c++draft/intro.progress#7>`__,
then CUDA C++ provides `*parallel forward progress* [intro.progress.9] <https://eel.is/c++draft/intro.progress#9>`__ for device threads.
If the host implementation provides `concurrent forward progress [intro.progress.7] <https://eel.is/c++draft/intro.progress#7>`__,
then CUDA C++ provides `parallel forward progress [intro.progress.9] <https://eel.is/c++draft/intro.progress#9>`__ for device threads.


.. _libcudacxx-extended-api-execution-model-device-threads:
Expand Down
Loading