From b0aa9339e9b5847520f6b409264e5fe48915eeba Mon Sep 17 00:00:00 2001 From: apoorva Date: Mon, 12 May 2025 09:54:40 +0000 Subject: [PATCH] Fixed compilation failure. --- example/01_gemm/gemm_wmma_bf16_bf16_bf16_v3.cpp | 5 ----- example/01_gemm/gemm_wmma_f16_f16_f16_v3.cpp | 5 ----- example/01_gemm/gemm_wmma_f8_f8_bf16_v3.cpp | 5 ----- 3 files changed, 15 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 de4d3bb0f1..1ee1b063ea 100644 --- a/example/01_gemm/gemm_wmma_bf16_bf16_bf16_v3.cpp +++ b/example/01_gemm/gemm_wmma_bf16_bf16_bf16_v3.cpp @@ -8,11 +8,6 @@ using BF16 = bhalf_t; using F32 = float; -using Row = tensor_layout::gemm::RowMajor; -using Col = tensor_layout::gemm::ColumnMajor; - -using PassThrough = element_wise::PassThrough; - using ADataType = BF16; using BDataType = BF16; using AccDataType = F32; 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 e41560e200..51e015e317 100644 --- a/example/01_gemm/gemm_wmma_f16_f16_f16_v3.cpp +++ b/example/01_gemm/gemm_wmma_f16_f16_f16_v3.cpp @@ -8,11 +8,6 @@ using F16 = half_t; using F32 = float; -using Row = tensor_layout::gemm::RowMajor; -using Col = tensor_layout::gemm::ColumnMajor; - -using PassThrough = element_wise::PassThrough; - using ADataType = F16; using BDataType = F16; using AccDataType = F32; 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 86e86708f7..df8b09ca2e 100644 --- a/example/01_gemm/gemm_wmma_f8_f8_bf16_v3.cpp +++ b/example/01_gemm/gemm_wmma_f8_f8_bf16_v3.cpp @@ -9,11 +9,6 @@ using F8 = f8_t; using BF16 = bhalf_t; using F32 = float; -using Row = tensor_layout::gemm::RowMajor; -using Col = tensor_layout::gemm::ColumnMajor; - -using PassThrough = element_wise::PassThrough; - using ADataType = F8; using BDataType = F8; using AccDataType = F32;