From fc5551a724904e71832638b200151cb2e59d8bf2 Mon Sep 17 00:00:00 2001 From: Gerardo Hernandez Date: Wed, 15 Oct 2025 14:51:43 +0100 Subject: [PATCH] SWDEV-536360 - fix another bullet point in reduce sync operations section not being displayed on its own line (#1374) --- projects/hip/docs/how-to/hip_cpp_language_extensions.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/hip/docs/how-to/hip_cpp_language_extensions.rst b/projects/hip/docs/how-to/hip_cpp_language_extensions.rst index a7a1143918..15c228b33b 100644 --- a/projects/hip/docs/how-to/hip_cpp_language_extensions.rst +++ b/projects/hip/docs/how-to/hip_cpp_language_extensions.rst @@ -998,6 +998,7 @@ Arithmetic reduces: T __reduce_max_sync (unsigned long long mask, T var); ``T`` can be: + * On Nvidia platform: ``int`` or ``unsigned int`` * On AMD platform: ``int`` or ``unsigned int``; if the user defines the macro ``HIP_ENABLE_EXTRA_WARP_SYNC_TYPES``, then: ``unsigned long long``, ``long long``, ``half``/``single``/``double`` precision floating @@ -1018,6 +1019,7 @@ Logical reduces: T __reduce_xor_sync (unsigned long long mask, T var); ``T`` can be: + * On Nvidia platform: ``unsigned int`` * On AMD platform: ``unsigned int``, and if the user defines the macro ``HIP_ENABLE_EXTRA_WARP_SYNC_TYPES``, then ``int``, ``unsigned long long`` or ``long long`` are also supported