SWDEV-528683 - Hardcode valid wavefront compile time options (#306)

[ROCm/clr commit: f9199ac205]
Tento commit je obsažen v:
Brzak, Branislav
2025-05-12 19:29:39 +02:00
odevzdal GitHub
rodič b9669ea266
revize cc6bfe71fc
@@ -69,7 +69,7 @@ template <unsigned int size>
using is_power_of_2 = std::integral_constant<bool, (size & (size - 1)) == 0>;
template <unsigned int size>
using is_valid_wavefront = std::integral_constant<bool, (size <= __AMDGCN_WAVEFRONT_SIZE)>;
using is_valid_wavefront = std::integral_constant<bool, size <= 64>;
template <unsigned int size>
using is_valid_tile_size =