Skip to content

Commit

Permalink
Fix the multi device link
Browse files Browse the repository at this point in the history
  • Loading branch information
neon60 committed Dec 5, 2024
1 parent f5989be commit c569504
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/programming_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
HIP programming guide introduction
********************************************************************************

This topic provides key HIP programming concepts and links to more detailed information.
This topic provides key HIP programming concepts and links to more detailed
information.

Write GPU Kernels for Parallel Execution
================================================================================
Expand Down Expand Up @@ -56,8 +57,8 @@ Synchronize CPU and GPU Workloads
================================================================================

Tasks on the host and devices run asynchronously, so proper synchronization is
needed when dependencies between those tasks exist. The asynchronous execution of
tasks is useful for fully utilizing the available resources. Even when only a
needed when dependencies between those tasks exist. The asynchronous execution
of tasks is useful for fully utilizing the available resources. Even when only a
single device is available, memory transfers and the execution of tasks can be
overlapped with asynchronous execution.

Expand All @@ -80,4 +81,4 @@ Large-scale applications that need more compute power can use multiple GPUs in
the system. This requires distributing workloads across multiple GPUs to balance
the load to prevent GPUs from being overutilized while others are idle.

For more information, see :ref:`multi-device` .
For more information, see :ref:`multi-device` .

0 comments on commit c569504

Please sign in to comment.