diff --git a/documentation/library_guide/kernel_templates/esimd/radix_sort.rst b/documentation/library_guide/kernel_templates/esimd/radix_sort.rst index 3804fc120f..abac1981f8 100644 --- a/documentation/library_guide/kernel_templates/esimd/radix_sort.rst +++ b/documentation/library_guide/kernel_templates/esimd/radix_sort.rst @@ -9,10 +9,6 @@ The ``radix_sort`` function sorts data using the radix sort algorithm. The sorting is stable, preserving the relative order of elements with equal keys. Both in-place and out-of-place overloads are provided. Out-of-place overloads do not alter the input sequence. -.. note:: - the ``radix_sort`` is currently available only for Intel® Data Center GPU Max Series, - and requires Intel® oneAPI DPC++/C++ Compiler 2023.2 or newer. - The functions implement a Onesweep* [#fnote1]_ algorithm variant. A synopsis of the ``radix_sort`` function is provided below: @@ -51,6 +47,9 @@ A synopsis of the ``radix_sort`` function is provided below: KernelParam param); // (4) } +.. note:: + The ``radix_sort`` is currently available only for Intel® Data Center GPU Max Series, + and requires Intel® oneAPI DPC++/C++ Compiler 2023.2 or newer. Template Parameters -------------------- diff --git a/documentation/library_guide/kernel_templates/esimd/radix_sort_by_key.rst b/documentation/library_guide/kernel_templates/esimd/radix_sort_by_key.rst index a1f4f35cc1..8f59eaddb8 100755 --- a/documentation/library_guide/kernel_templates/esimd/radix_sort_by_key.rst +++ b/documentation/library_guide/kernel_templates/esimd/radix_sort_by_key.rst @@ -9,9 +9,7 @@ The ``radix_sort_by_key`` function sorts keys using the radix sort algorithm, ap The sorting is stable, preserving the relative order of elements with equal keys. Both in-place and out-of-place overloads are provided. Out-of-place overloads do not alter the input sequences. -.. note:: - the ``radix_sort_by_key`` is currently available only for Intel® Data Center GPU Max Series, - and requires Intel® oneAPI DPC++/C++ Compiler 2023.2 or newer. + The functions implement a Onesweep* [#fnote1]_ algorithm variant. @@ -57,6 +55,9 @@ A synopsis of the ``radix_sort_by_key`` function is provided below: KernelParam param); // (4) } +.. note:: + The ``radix_sort_by_key`` is currently available only for Intel® Data Center GPU Max Series, + and requires Intel® oneAPI DPC++/C++ Compiler 2023.2 or newer. Template Parameters --------------------