Add support for gfx1153 (#3306)

This commit is contained in:
Matthias Gehre
2025-11-27 08:48:00 +01:00
committed by GitHub
parent a38aeceb21
commit 678298d4c7
8 changed files with 19 additions and 19 deletions

View File

@@ -57,7 +57,7 @@ inline bool is_gfx11_supported()
return get_device_name() == "gfx1100" || get_device_name() == "gfx1101" ||
get_device_name() == "gfx1102" || get_device_name() == "gfx1103" ||
get_device_name() == "gfx1150" || get_device_name() == "gfx1151" ||
get_device_name() == "gfx1152";
get_device_name() == "gfx1152" || get_device_name() == "gfx1153";
}
inline bool is_gfx12_supported()