From 9cc5702e897e19e216c1c0064a0295fecf79b79d Mon Sep 17 00:00:00 2001 From: apoorva Date: Thu, 8 May 2025 21:58:23 +0000 Subject: [PATCH] Fixing build erros --- example/01_gemm/gemm_wmma_bf16_bf16_bf16_v3.cpp | 2 +- example/01_gemm/gemm_wmma_f16_f16_f16_v3.cpp | 2 +- example/01_gemm/gemm_wmma_f8_f8_bf16_v3.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/01_gemm/gemm_wmma_bf16_bf16_bf16_v3.cpp b/example/01_gemm/gemm_wmma_bf16_bf16_bf16_v3.cpp index eb5a65f417..de4d3bb0f1 100644 --- a/example/01_gemm/gemm_wmma_bf16_bf16_bf16_v3.cpp +++ b/example/01_gemm/gemm_wmma_bf16_bf16_bf16_v3.cpp @@ -3,7 +3,7 @@ #include "common.hpp" -#include "ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp.hpp" +#include "ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp" using BF16 = bhalf_t; using F32 = float; diff --git a/example/01_gemm/gemm_wmma_f16_f16_f16_v3.cpp b/example/01_gemm/gemm_wmma_f16_f16_f16_v3.cpp index 86f2d76671..e41560e200 100644 --- a/example/01_gemm/gemm_wmma_f16_f16_f16_v3.cpp +++ b/example/01_gemm/gemm_wmma_f16_f16_f16_v3.cpp @@ -3,7 +3,7 @@ #include "common.hpp" -#include "ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp.hpp" +#include "ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp" using F16 = half_t; using F32 = float; diff --git a/example/01_gemm/gemm_wmma_f8_f8_bf16_v3.cpp b/example/01_gemm/gemm_wmma_f8_f8_bf16_v3.cpp index dae491ee07..86e86708f7 100644 --- a/example/01_gemm/gemm_wmma_f8_f8_bf16_v3.cpp +++ b/example/01_gemm/gemm_wmma_f8_f8_bf16_v3.cpp @@ -3,7 +3,7 @@ #include "common.hpp" -#include "ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp.hpp" +#include "ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp" using F8 = f8_t; using BF16 = bhalf_t;