From cec06d59d1cf9443c5e7890e4285e61c56f06eca Mon Sep 17 00:00:00 2001 From: Nilesh M Negi Date: Tue, 9 Jan 2024 13:28:32 -0600 Subject: [PATCH] Un-escaped character causes error with address sanitizer builds (#992) Signed-off-by: Nilesh M Negi Co-authored-by: Jenkins [ROCm/rccl commit: 249e9f7f652a6314597e3a8dc0a4456911650231] --- projects/rccl/src/include/msccl/msccl_struct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rccl/src/include/msccl/msccl_struct.h b/projects/rccl/src/include/msccl/msccl_struct.h index b96f4d9b69..a2b85e527f 100644 --- a/projects/rccl/src/include/msccl/msccl_struct.h +++ b/projects/rccl/src/include/msccl/msccl_struct.h @@ -64,7 +64,7 @@ struct mscclThreadBlock { int16_t channelId; // associated channel. -1 indicates a thread block with only local copies }; // 5384 bytes -static_assert(sizeof(struct mscclThreadBlock) % sizeof(uint64_t) == 0, "Sanity check: sizeof(struct mscclThreadBlock) % sizeof(uint64_t) != 0"); +static_assert(sizeof(struct mscclThreadBlock) % sizeof(uint64_t) == 0, "Sanity check: sizeof(struct mscclThreadBlock) %% sizeof(uint64_t) != 0"); struct mscclFlag { uint64_t flag;