[CK Builder] Add missing tf32 type to reflection. (#3090)

We need to check all the architectures for build errors. This missing tf32 type came up as a build failure when I compiled for different instinct architectures.
This commit is contained in:
John Shumway
2025-10-25 07:28:12 -07:00
committed by GitHub
parent f53d857b25
commit 6d709dac41

View File

@@ -40,6 +40,8 @@ consteval std::string_view type_name()
return "fp16";
else if constexpr(std::is_same_v<T, float>)
return "fp32";
else if constexpr(std::is_same_v<T, ck::tf32_t>)
return "tf32";
else if constexpr(std::is_same_v<T, double>)
return "fp64";
else if constexpr(std::is_same_v<T, int8_t>)