ck-builder: add missing type tf32 to type_name

This commit is contained in:
Robin Voetter
2025-10-23 16:03:51 +02:00
committed by Kevin Abraham
parent bf022a6d15
commit 7a49fb2874

View File

@@ -47,6 +47,8 @@ consteval std::string_view type_name_impl()
return "fp8";
else if constexpr(std::is_same_v<T, ck::bf8_t>)
return "bf8";
else if constexpr(std::is_same_v<T, ck::tf32_t>)
return "tf32";
else
return std::string_view{}; // Return empty for supported types
}