Add missing xdlop archs to supported set

This commit is contained in:
Alan Turner
2023-06-09 08:29:27 -07:00
parent 84c5bec1d6
commit d7173bc68f

View File

@@ -38,7 +38,7 @@ std::size_t GetGridSize(const std::size_t m,
const std::unordered_set<std::string>& get_xdlop_archs()
{
static std::unordered_set<std::string> supported_archs{"gfx90a"};
static std::unordered_set<std::string> supported_archs{"gfx90a", "gfx908", "gfx940"};
return supported_archs;
}