-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[AMDGPU] Introduce FeatureISAVersion11_5_Common. NFC. #141061
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This just removes some duplication in the features lists for gfx115x.
|
@llvm/pr-subscribers-backend-amdgpu Author: Jay Foad (jayfoad) ChangesThis just removes some duplication in the features lists for gfx115x. Full diff: https://github.com/llvm/llvm-project/pull/141061.diff 1 Files Affected:
diff --git a/llvm/lib/Target/AMDGPU/AMDGPU.td b/llvm/lib/Target/AMDGPU/AMDGPU.td
index 764a7a9bf5e52..18f334d343d97 100644
--- a/llvm/lib/Target/AMDGPU/AMDGPU.td
+++ b/llvm/lib/Target/AMDGPU/AMDGPU.td
@@ -1819,33 +1819,28 @@ def FeatureISAVersion11_0_3 : FeatureSet<
!listconcat(FeatureISAVersion11_0_Common.Features,
[])>;
-def FeatureISAVersion11_5_0 : FeatureSet<
+def FeatureISAVersion11_5_Common : FeatureSet<
!listconcat(FeatureISAVersion11_Common.Features,
[FeatureSALUFloatInsts,
FeatureDPPSrc1SGPR,
- FeatureRequiredExportPriority,
- FeaturePointSampleAccel])>;
+ FeatureRequiredExportPriority])>;
+
+def FeatureISAVersion11_5_0 : FeatureSet<
+ !listconcat(FeatureISAVersion11_5_Common.Features,
+ [FeaturePointSampleAccel])>;
def FeatureISAVersion11_5_1 : FeatureSet<
- !listconcat(FeatureISAVersion11_Common.Features,
- [FeatureSALUFloatInsts,
- FeatureDPPSrc1SGPR,
- Feature1_5xVGPRs,
- FeatureRequiredExportPriority,
+ !listconcat(FeatureISAVersion11_5_Common.Features,
+ [Feature1_5xVGPRs,
FeaturePointSampleAccel])>;
def FeatureISAVersion11_5_2 : FeatureSet<
- !listconcat(FeatureISAVersion11_Common.Features,
- [FeatureSALUFloatInsts,
- FeatureDPPSrc1SGPR,
- FeatureRequiredExportPriority,
- FeaturePointSampleAccel])>;
+ !listconcat(FeatureISAVersion11_5_Common.Features,
+ [FeaturePointSampleAccel])>;
def FeatureISAVersion11_5_3 : FeatureSet<
- !listconcat(FeatureISAVersion11_Common.Features,
- [FeatureSALUFloatInsts,
- FeatureDPPSrc1SGPR,
- FeatureRequiredExportPriority])>;
+ !listconcat(FeatureISAVersion11_5_Common.Features,
+ [])>;
def FeatureISAVersion12 : FeatureSet<
[FeatureGFX12,
|
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/141/builds/8910 Here is the relevant piece of the build log for the reference |
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/169/builds/11666 Here is the relevant piece of the build log for the reference |
This just removes some duplication in the features lists for gfx115x.