https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From 164ae855aa5f1fddf3d3977e53f5261c43a25121 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From 164ae855aa5f1fddf3d3977e53f5261c43a25121 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From 139ed0582220175e090f4df4bef144313ed00ccc Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From 139ed0582220175e090f4df4bef144313ed00ccc Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From 11282b1d43e87a092a6d21cc23e6962b65554eb3 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From b3a2dc9d2642a79cc3251db2623464075f206e12 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From 4b88628633b065f3d8cc24d4f3bd4e3274fcc75a Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From b3a2dc9d2642a79cc3251db2623464075f206e12 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From 4b88628633b065f3d8cc24d4f3bd4e3274fcc75a Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From 11282b1d43e87a092a6d21cc23e6962b65554eb3 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From 75e41ae17d5daae609c6f25025c730e9bb3924bc Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From 75e41ae17d5daae609c6f25025c730e9bb3924bc Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
@@ -13,9 +13,9 @@ define protected amdgpu_kernel void @InferNothing(i32 %a, ptr
%b, double %c) {
; CHECK-NEXT:s_lshl_b64 s[2:3], s[6:7], 3
; CHECK-NEXT:s_add_u32 s0, s2, s0
; CHECK-NEXT:s_addc_u32 s1, s3, s1
-; CHECK-NEXT:v_mov_b32_e32 v3, s1
-; CHECK-NEXT:
ritter-x2a wrote:
> Maybe we could consider adding "ISD::PTRADD"? Lowers to ISD::ADD by default,
> but targets that want to do weird things with pointer arithmetic could do
> them.
That would be helpful. We'd still need an inbounds flag for ISD::PTRADD, but
it would certainly be easier to ma
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From a8155cf5b7847a041be8d4252b20cae01d305404 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
ritter-x2a wrote:
> I think if we add something called "inbounds" to SelectionDAG, it will
> inevitably get misused for other purposes, though.
Wouldn't we have any problems that would introduce already with inbounds GEPs
in the IR? Assuming we introduce ISD::PTRADD and only give inbounds a m
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From bd22087405bdf669eca230dcf0656dd14b290083 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a ready_for_review
https://github.com/llvm/llvm-project/pull/132353
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From bd22087405bdf669eca230dcf0656dd14b290083 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From ee21919269e84f95b07c65c90937cc13d25202ad Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From a8155cf5b7847a041be8d4252b20cae01d305404 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From ee21919269e84f95b07c65c90937cc13d25202ad Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From 42481628ec10fe863bc9bca94efa84cd414d385b Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
ritter-x2a wrote:
> Actually, thinking about it a bit more, the "allocated object" referenced in
> the LangRef spec doesn't actually have to be live. So you also have to worry
> about objects which were previously allocated at the same address... which
> means inbounds is basically meaningless
@@ -492,7 +511,8 @@ LLT
RegBankLegalizeHelper::getBTyFromID(RegBankLLTMappingApplyID ID, LLT Ty) {
case UniInVgprB64:
if (Ty == LLT::scalar(64) || Ty == LLT::fixed_vector(2, 32) ||
Ty == LLT::fixed_vector(4, 16) || Ty == LLT::pointer(0, 64) ||
-Ty == LLT:
@@ -492,7 +511,8 @@ LLT
RegBankLegalizeHelper::getBTyFromID(RegBankLLTMappingApplyID ID, LLT Ty) {
case UniInVgprB64:
if (Ty == LLT::scalar(64) || Ty == LLT::fixed_vector(2, 32) ||
Ty == LLT::fixed_vector(4, 16) || Ty == LLT::pointer(0, 64) ||
-Ty == LLT:
ritter-x2a wrote:
Does this also handle the test cases in `regbankselect-and-s1.mir` ?
https://github.com/llvm/llvm-project/pull/132382
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listi
@@ -489,22 +489,61 @@ RegBankLegalizeRules::RegBankLegalizeRules(const
GCNSubtarget &_ST,
.Uni(B32, {{SgprB32}, {Sgpr32AExtBoolInReg, SgprB32, SgprB32}});
addRulesForGOpcs({G_ANYEXT})
+ .Any({{UniS16, S1}, {{None}, {None}}}) // should be combined away
.Any
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From 9294d4f1094afd1b955447a0e76480d83fadb3d4 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From 9294d4f1094afd1b955447a0e76480d83fadb3d4 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/131862
>From 42481628ec10fe863bc9bca94efa84cd414d385b Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 17 Mar 2025 06:51:16 -0400
Subject: [PATCH] [SDAG] Introduce inbounds flag for pointer arithmetic
This p
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From dd12dc2dc49b65b426b6ced3268e85939e55f9f6 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/132353
>From dd12dc2dc49b65b426b6ced3268e85939e55f9f6 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Fri, 21 Mar 2025 03:33:02 -0400
Subject: [PATCH] [AMDGPU][SDAG] Only fold flat offsets if they are inbounds
F
https://github.com/ritter-x2a ready_for_review
https://github.com/llvm/llvm-project/pull/131994
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
ritter-x2a wrote:
The changes are now in #131994 and #132353.
https://github.com/llvm/llvm-project/pull/131863
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
ritter-x2a wrote:
> This seems semantically ambiguous.
>
> In GlobalISel, you have G_PTR_ADD, and inbounds on that has an obvious
> meaning; G_PTR_ADD has basically the same semantics as getelementptr. But in
> SelectionDAG, we don't have that; we just have a plain ISD::ADD. How do you
> tell
ritter-x2a wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.dev/github/pr/llvm/llvm-project/131994?utm_source=stack-comment-downstack-mergeability-warnin
ritter-x2a wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.dev/github/pr/llvm/llvm-project/131863?utm_source=stack-comment-downstack-mergeability-warnin
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From ee992060fc09c567ef8a2ea6c362c8d35fd5d672 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a ready_for_review
https://github.com/llvm/llvm-project/pull/131862
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ritter-x2a ready_for_review
https://github.com/llvm/llvm-project/pull/131863
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
ritter-x2a wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.dev/github/pr/llvm/llvm-project/131862?utm_source=stack-comment-downstack-mergeability-warnin
https://github.com/ritter-x2a created
https://github.com/llvm/llvm-project/pull/131862
This patch introduces an inbounds SDNodeFlag, to show that a pointer
addition SDNode implements an inbounds getelementptr operation (i.e.,
the pointer operand is in bounds wrt. the allocated object it is based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From ee992060fc09c567ef8a2ea6c362c8d35fd5d672 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From eb82bfb8d8cd73cb79e91c77820d9b79d566195d Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From eb82bfb8d8cd73cb79e91c77820d9b79d566195d Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From 0e11e500920a20bee3c354d9474e91995081f7ab Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From 0e11e500920a20bee3c354d9474e91995081f7ab Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From c957d905bea1d664564a08dbca0909b905920a8c Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From c957d905bea1d664564a08dbca0909b905920a8c Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From 936a6aabb39df4eb58fb60facd826685746906c4 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From 936a6aabb39df4eb58fb60facd826685746906c4 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
ritter-x2a wrote:
> Started a llvm-compile-time-tracker run to check for compile time impact.
all within +/-0.02% (but I'm not sure if SeparateConstOffsetFromGEP even runs
as part of these benchmarks).
https://github.com/llvm/llvm-project/pull/130617
___
@@ -24,3 +24,26 @@ entry:
store float %3, ptr %arrayidx.dst, align 4
ret void
}
+
+; All offsets must be positive, so inbounds can be preserved.
ritter-x2a wrote:
No, the last GEP in tgt should use `%arrayidx.dst` instead of `%arrayidx.src`.
Here is the I
ritter-x2a wrote:
> [!WARNING]
> This pull request is not mergeable via GitHub because a downstack PR is
> open. Once all requirements are satisfied, merge this PR as a stack href="https://app.graphite.dev/github/pr/llvm/llvm-project/130617?utm_source=stack-comment-downstack-mergeability-warnin
https://github.com/ritter-x2a ready_for_review
https://github.com/llvm/llvm-project/pull/130617
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
ritter-x2a wrote:
Started a llvm-compile-time-tracker run to check for compile time impact.
https://github.com/llvm/llvm-project/pull/130617
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/
@@ -24,3 +24,26 @@ entry:
store float %3, ptr %arrayidx.dst, align 4
ret void
}
+
+; All offsets must be positive, so inbounds can be preserved.
ritter-x2a wrote:
The test is now simplified.
https://github.com/llvm/llvm-project/pull/130617
___
@@ -1079,6 +1081,8 @@ bool
SeparateConstOffsetFromGEP::splitGEP(GetElementPtrInst *GEP) {
// and the old index if they are not used.
RecursivelyDeleteTriviallyDeadInstructions(UserChainTail);
RecursivelyDeleteTriviallyDeadInstructions(OldIdx);
+
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From 23384f4b38b721125650577cae440caa20203bc8 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/130617
>From 23384f4b38b721125650577cae440caa20203bc8 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Mon, 10 Mar 2025 06:55:10 -0400
Subject: [PATCH 1/2] [SeparateConstOffsetFromGEP] Preserve inbounds flag based
https://github.com/ritter-x2a created
https://github.com/llvm/llvm-project/pull/130617
If we know that the initial GEP was inbounds, and we change it to a
sequence of GEPs from the same base pointer where every offset is
non-negative, then the new GEPs are inbounds.
For SWDEV-516125.
>From e88
ritter-x2a wrote:
### Merge activity
* **Feb 19, 3:48 AM EST**: A user started a stack merge that includes this pull
request via
[Graphite](https://app.graphite.dev/github/pr/llvm/llvm-project/126878).
https://github.com/llvm/llvm-project/pull/126878
_
ritter-x2a wrote:
### Merge activity
* **Feb 19, 3:48 AM EST**: A user started a stack merge that includes this pull
request via
[Graphite](https://app.graphite.dev/github/pr/llvm/llvm-project/126887).
https://github.com/llvm/llvm-project/pull/126887
_
ritter-x2a wrote:
### Merge activity
* **Feb 19, 3:48 AM EST**: A user started a stack merge that includes this pull
request via
[Graphite](https://app.graphite.dev/github/pr/llvm/llvm-project/125836).
https://github.com/llvm/llvm-project/pull/125836
_
ritter-x2a wrote:
### Merge activity
* **Feb 19, 3:48 AM EST**: A user started a stack merge that includes this pull
request via
[Graphite](https://app.graphite.dev/github/pr/llvm/llvm-project/126762).
https://github.com/llvm/llvm-project/pull/126762
_
ritter-x2a wrote:
### Merge activity
* **Feb 19, 3:48 AM EST**: A user started a stack merge that includes this pull
request via
[Graphite](https://app.graphite.dev/github/pr/llvm/llvm-project/126763).
https://github.com/llvm/llvm-project/pull/126763
_
ritter-x2a wrote:
### Merge activity
* **Feb 19, 3:48 AM EST**: A user started a stack merge that includes this pull
request via
[Graphite](https://app.graphite.dev/github/pr/llvm/llvm-project/126906).
https://github.com/llvm/llvm-project/pull/126906
_
ritter-x2a wrote:
### Merge activity
* **Feb 19, 3:48 AM EST**: A user started a stack merge that includes this pull
request via
[Graphite](https://app.graphite.dev/github/pr/llvm/llvm-project/125827).
https://github.com/llvm/llvm-project/pull/125827
_
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126878
>From 05da561320a9ce66e13fe1b952b3214371150563 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 04:13:18 -0500
Subject: [PATCH] [AMDGPU] Remove FeatureForceStoreSC0SC1
This was only used f
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126887
>From ca4a62030e2586a928e56efc2c71583b63787819 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 05:45:01 -0500
Subject: [PATCH] [AMDGPU][docs] Replace gfx940 and gfx941 with gfx942 in
llvm
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126762
>From ae35c1af2d85a8914a4aa01df3f5dfc64b0561f4 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Tue, 11 Feb 2025 08:52:55 -0500
Subject: [PATCH] [AMDGPU][clang] Replace gfx940 and gfx941 with gfx942 in
cla
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126762
>From ae35c1af2d85a8914a4aa01df3f5dfc64b0561f4 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Tue, 11 Feb 2025 08:52:55 -0500
Subject: [PATCH] [AMDGPU][clang] Replace gfx940 and gfx941 with gfx942 in
cla
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126887
>From ca4a62030e2586a928e56efc2c71583b63787819 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 05:45:01 -0500
Subject: [PATCH] [AMDGPU][docs] Replace gfx940 and gfx941 with gfx942 in
llvm
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125836
>From 6a184d4af1ab15e105155aa0d3463a467e16c89c Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 05:50:12 -0500
Subject: [PATCH 1/2] [AMDGPU][MLIR] Replace gfx940 and gfx941 with gfx942 in
M
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125827
>From 876dba72b049a1c84fceb42f8d3fff772cd6aa9f Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 04:45:26 -0500
Subject: [PATCH] [AMDGPU] Add missing gfx architectures to
AddFlangOffloadRunt
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126878
>From 05da561320a9ce66e13fe1b952b3214371150563 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 04:13:18 -0500
Subject: [PATCH] [AMDGPU] Remove FeatureForceStoreSC0SC1
This was only used f
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126906
>From f58faa1000acc67f1247bd6504647115b26b2f43 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 08:04:43 -0500
Subject: [PATCH] [AMDGPU][docs][NFC] Replace gfx940 with gfx942 in the gfx940
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125827
>From 876dba72b049a1c84fceb42f8d3fff772cd6aa9f Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 04:45:26 -0500
Subject: [PATCH] [AMDGPU] Add missing gfx architectures to
AddFlangOffloadRunt
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126906
>From f58faa1000acc67f1247bd6504647115b26b2f43 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 08:04:43 -0500
Subject: [PATCH] [AMDGPU][docs][NFC] Replace gfx940 with gfx942 in the gfx940
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125836
>From 6a184d4af1ab15e105155aa0d3463a467e16c89c Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 05:50:12 -0500
Subject: [PATCH 1/2] [AMDGPU][MLIR] Replace gfx940 and gfx941 with gfx942 in
M
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126887
>From a5d359bb1a9b271316617fd84e10c64912e3c6a4 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 05:45:01 -0500
Subject: [PATCH] [AMDGPU][docs] Replace gfx940 and gfx941 with gfx942 in
llvm
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126887
>From a5d359bb1a9b271316617fd84e10c64912e3c6a4 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 05:45:01 -0500
Subject: [PATCH] [AMDGPU][docs] Replace gfx940 and gfx941 with gfx942 in
llvm
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125827
>From 51b377df31cc5dcd9e1fd7e5f8ff69a1e4a25cbe Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 04:45:26 -0500
Subject: [PATCH] [AMDGPU] Add missing gfx architectures to
AddFlangOffloadRunt
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126906
>From 5bfa81dbc27204e4a7b8b8cafc57bfbab56467d4 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 08:04:43 -0500
Subject: [PATCH] [AMDGPU][docs][NFC] Replace gfx940 with gfx942 in the gfx940
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125827
>From 51b377df31cc5dcd9e1fd7e5f8ff69a1e4a25cbe Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 04:45:26 -0500
Subject: [PATCH] [AMDGPU] Add missing gfx architectures to
AddFlangOffloadRunt
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125836
>From 411774e0d3d6007130fb16be18fe9a37da4e3bfe Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 05:50:12 -0500
Subject: [PATCH 1/2] [AMDGPU][MLIR] Replace gfx940 and gfx941 with gfx942 in
M
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126762
>From a80db3a9fe9654bc91b9377f8d38e6270380f9a2 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Tue, 11 Feb 2025 08:52:55 -0500
Subject: [PATCH] [AMDGPU][clang] Replace gfx940 and gfx941 with gfx942 in
cla
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126878
>From 731f633e66cf3118e5764ed4d0acbd794d2ca2d2 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 04:13:18 -0500
Subject: [PATCH] [AMDGPU] Remove FeatureForceStoreSC0SC1
This was only used f
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126762
>From a80db3a9fe9654bc91b9377f8d38e6270380f9a2 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Tue, 11 Feb 2025 08:52:55 -0500
Subject: [PATCH] [AMDGPU][clang] Replace gfx940 and gfx941 with gfx942 in
cla
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126878
>From 731f633e66cf3118e5764ed4d0acbd794d2ca2d2 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 04:13:18 -0500
Subject: [PATCH] [AMDGPU] Remove FeatureForceStoreSC0SC1
This was only used f
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125836
>From 411774e0d3d6007130fb16be18fe9a37da4e3bfe Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 05:50:12 -0500
Subject: [PATCH 1/2] [AMDGPU][MLIR] Replace gfx940 and gfx941 with gfx942 in
M
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126878
>From baa8adda226fea78f2fd595edadf57af72d7d049 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 04:13:18 -0500
Subject: [PATCH] [AMDGPU] Remove FeatureForceStoreSC0SC1
This was only used f
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125826
>From e8d38e53f175c5d481c6774b330f0da15d234322 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 04:19:00 -0500
Subject: [PATCH] [AMDGPU] Replace gfx940 and gfx941 with gfx942 in offload and
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125836
>From d8557b87c87c4cf404f591e4f82e3c24928536fe Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 05:50:12 -0500
Subject: [PATCH 1/2] [AMDGPU][MLIR] Replace gfx940 and gfx941 with gfx942 in
M
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/125827
>From 55e82835c1fbf0259881c34dc55d7fd15cfd98a2 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 5 Feb 2025 04:45:26 -0500
Subject: [PATCH] [AMDGPU] Add missing gfx architectures to
AddFlangOffloadRunt
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126878
>From baa8adda226fea78f2fd595edadf57af72d7d049 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 04:13:18 -0500
Subject: [PATCH] [AMDGPU] Remove FeatureForceStoreSC0SC1
This was only used f
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126762
>From 7398a7f3a441fca9fbcddcc2b5db1e6a57c52165 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Tue, 11 Feb 2025 08:52:55 -0500
Subject: [PATCH] [AMDGPU][clang] Replace gfx940 and gfx941 with gfx942 in
cla
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126887
>From 6bc2689cf31303be4451b7c8c79546465a1c1016 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Wed, 12 Feb 2025 05:45:01 -0500
Subject: [PATCH] [AMDGPU][docs] Replace gfx940 and gfx941 with gfx942 in
llvm
https://github.com/ritter-x2a updated
https://github.com/llvm/llvm-project/pull/126762
>From 7398a7f3a441fca9fbcddcc2b5db1e6a57c52165 Mon Sep 17 00:00:00 2001
From: Fabian Ritter
Date: Tue, 11 Feb 2025 08:52:55 -0500
Subject: [PATCH] [AMDGPU][clang] Replace gfx940 and gfx941 with gfx942 in
cla
1 - 100 of 157 matches
Mail list logo