[clang] [llvm] [AMDGPU] Error out in clang if wavefront64 is used on gfx1250 (PR #153693)
Stanislav Mekhanoshin via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 14 17:06:45 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:
Do you want to add a new feature to every target out there?
https://github.com/llvm/llvm-project/pull/153693
More information about the cfe-commits
mailing list