[clang] [llvm] [AMDGPU] Error out in clang if wavefront64 is used on gfx1250 (PR #153693)
Stanislav Mekhanoshin via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 20 10:47:00 PDT 2025
================
@@ -774,6 +774,18 @@ static bool isWave32Capable(StringRef GPU, const Triple &T) {
return IsWave32Capable;
}
+static bool isWave64Capable(StringRef GPU, const Triple &T) {
+ if (T.isAMDGCN()) {
----------------
rampitec wrote:
Ok, but as usual adding features to older targets will be invasive and disruptive.
https://github.com/llvm/llvm-project/pull/153693
More information about the llvm-commits
mailing list