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

[ROCm/clr commit: f9199ac205]
Этот коммит содержится в:
Brzak, Branislav
2025-05-12 19:29:39 +02:00
коммит произвёл GitHub
родитель b9669ea266
Коммит cc6bfe71fc
+1 -1
Просмотреть файл
@@ -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 =