From 4e6740646efaec27e39c4dbc06f522d79cd9d90c Mon Sep 17 00:00:00 2001 From: Pak Lui Date: Wed, 13 Oct 2021 19:01:55 -0700 Subject: [PATCH] Update HIP_Debugging.rst correct a typo. it should be HCC_SERIALIZE_KERNEL instead of HCC_SERIALZIE_KERNELS --- Programming_Guides/HIP_Debugging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Programming_Guides/HIP_Debugging.rst b/Programming_Guides/HIP_Debugging.rst index c830d552..16ddf91a 100644 --- a/Programming_Guides/HIP_Debugging.rst +++ b/Programming_Guides/HIP_Debugging.rst @@ -96,7 +96,7 @@ HIP provides 3 environment variables in the HIP_*_BLOCKING family. These introdu These options cause HCC to serialize. Useful if you have libraries or code which is calling HCC kernels directly rather than using HIP. -* HCC_SERIALZIE_KERNELS : 0x1=pre-serialize before each kernel launch, 0x2=post-serialize after each kernel launch., 0x3= pre- and post- serialize. +* HCC_SERIALIZE_KERNEL : 0x1=pre-serialize before each kernel launch, 0x2=post-serialize after each kernel launch., 0x3= pre- and post- serialize. * HCC_SERIALIZE_COPY : 0x1=pre-serialize before each async copy, 0x2=post-serialize after each async copy., 0x3= pre- and post- serialize.