[AMDGPU][True16] turn on true16 for all gfx11 devices#143518
Merged
broxigarchen merged 1 commit intollvm:mainfrom Jul 21, 2025
Merged
[AMDGPU][True16] turn on true16 for all gfx11 devices#143518broxigarchen merged 1 commit intollvm:mainfrom
broxigarchen merged 1 commit intollvm:mainfrom
Conversation
Member
|
@llvm/pr-subscribers-backend-amdgpu Author: Brox Chen (broxigarchen) Changesset default true16 mode for all gfx11 devices Full diff: https://github.com/llvm/llvm-project/pull/143518.diff 1 Files Affected:
diff --git a/llvm/lib/Target/AMDGPU/AMDGPU.td b/llvm/lib/Target/AMDGPU/AMDGPU.td
index a9b39eebbcdcf..d1f0a49e66aa2 100644
--- a/llvm/lib/Target/AMDGPU/AMDGPU.td
+++ b/llvm/lib/Target/AMDGPU/AMDGPU.td
@@ -1780,7 +1780,8 @@ def FeatureISAVersion11_Common : FeatureSet<
FeatureImageInsts,
FeaturePackedTID,
FeatureVcmpxPermlaneHazard,
- FeatureMemoryAtomicFAddF32DenormalSupport]>;
+ FeatureMemoryAtomicFAddF32DenormalSupport,
+ FeatureRealTrue16Insts]>;
// There are few workarounds that need to be
// added to all targets. This pessimizes codegen
@@ -1800,8 +1801,7 @@ def FeatureISAVersion11_0_Common : FeatureSet<
[FeatureMSAALoadDstSelBug,
FeatureVALUTransUseHazard,
FeatureMADIntraFwdBug,
- FeaturePrivEnabledTrap2NopBug,
- FeatureRealTrue16Insts])>;
+ FeaturePrivEnabledTrap2NopBug])>;
def FeatureISAVersion11_0_0 : FeatureSet<
!listconcat(FeatureISAVersion11_0_Common.Features,
|
arsenm
approved these changes
Jun 11, 2025
This was referenced Jul 23, 2025
mahesh-attarde
pushed a commit
to mahesh-attarde/llvm-project
that referenced
this pull request
Jul 28, 2025
A follow up patch from llvm#140736. Set default true16 mode from gfx110x to all gfx11 devices. Tests has been address in preivous patches.
searlmc1
pushed a commit
to ROCm/llvm-project
that referenced
this pull request
Aug 27, 2025
A follow up patch from llvm#140736. Set default true16 mode from gfx110x to all gfx11 devices. Tests has been address in preivous patches.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A follow up patch from #140736. Set default true16 mode from gfx110x to all gfx11 devices.
Tests has been address in preivous patches.