fix ck_tile/basic_gemm build error (#1988)

This commit is contained in:
BingYuan.Zhou
2025-03-21 13:01:14 +08:00
committed by GitHub
parent 902dbe89ad
commit 5a0d693b86
7 changed files with 57 additions and 14 deletions

1
include/ck_tile/ops/common/utils.hpp Normal file → Executable file
View File

@@ -18,6 +18,7 @@ template <> struct typeToStr<bf16_t> { static constexpr const char * name = "bf1
template <> struct typeToStr<fp8_t> { static constexpr const char * name = "fp8"; };
template <> struct typeToStr<bf8_t> { static constexpr const char * name = "bf8"; };
template <> struct typeToStr<int8_t> { static constexpr const char * name = "int8"; };
template <> struct typeToStr<pk_int4_t> { static constexpr const char * name = "pk_int4"; };
// clang-format on
template <typename ADataType_, typename BDataType_>