From 96d4da0a5c9e4453a24cbc312852b1cbfc2e8078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Manuel=20Martinez=20Caama=C3=B1o?= Date: Mon, 3 Mar 2025 17:19:47 +0100 Subject: [PATCH] Missing _ in __HIPCC__ (#1930) [ROCm/composable_kernel commit: 57bb0e96a4b46fd1351f4cd0cde28cb7a2ea5d1f] --- include/ck_tile/core/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ck_tile/core/config.hpp b/include/ck_tile/core/config.hpp index 090b2bf797..b767f4b707 100644 --- a/include/ck_tile/core/config.hpp +++ b/include/ck_tile/core/config.hpp @@ -51,7 +51,7 @@ CK_TILE_DECLARE_ENV_VAR_BOOL(CK_TILE_LOGGING) // implementing the "memory address space" attribute // https://llvm.org/docs/AMDGPUUsage.html#amdgpu-address-spaces-table -#ifdef __HIPCC_ +#ifdef __HIPCC__ #define CK_TILE_GENERIC_ADDR __attribute__((address_space(0))) #define CK_TILE_GLOBAL_ADDR __attribute__((address_space(1))) #define CK_TILE_LDS_ADDR __attribute__((address_space(3)))