From e2605511188e59e1e247401b9c9aaec5299fab31 Mon Sep 17 00:00:00 2001 From: Dmitriy Sobolev Date: Thu, 7 Nov 2024 05:17:55 -0600 Subject: [PATCH] Bullet list -> plain text for cohesiveness Signed-off-by: Dmitriy Sobolev --- documentation/library_guide/macros.rst | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/documentation/library_guide/macros.rst b/documentation/library_guide/macros.rst index 241f777c171..19360d8ba74 100644 --- a/documentation/library_guide/macros.rst +++ b/documentation/library_guide/macros.rst @@ -99,15 +99,16 @@ Macro Description If all parallel backends are disabled by setting respective macros to 0, algorithms with parallel policies are executed sequentially by the calling thread. ---------------------------------- ------------------------------ -``ONEDPL_USE_DPCPP_BACKEND`` This macro enables the use of device execution policies: +``ONEDPL_USE_DPCPP_BACKEND`` This macro enables the use of device execution policies. - - Not defined (default): the policies are enabled only if SYCL is present - (indicated by the presence of SYCL headers and the SYCL_LANGUAGE_VERSION macro); - otherwise, they are disabled. - - Set to a non-zero value: the policies are enabled. - - Set to 0: the policies are disabled. + When the macro is not defined (default), + device policies are enabled only if SYCL is present, + indicated by the definition of ``SYCL_LANGUAGE_VERSION`` macro + and the availability of SYCL headers; otherwise, device policies are disabled. + If the macro is set to a non-zero value, device policies are enabled. + Setting the macro to 0 disables device policies. - When device execution policies are disabled, no dependency on SYCL is introduced. + When device execuiton policies are disabled, no dependency on SYCL is introduced. ---------------------------------- ------------------------------ ``ONEDPL_USE_PREDEFINED_POLICIES`` This macro enables the use of predefined device policy objects, such as ``dpcpp_default`` and ``dpcpp_fpga``. When the macro is not defined (by default)