https://github.com/evelez7 closed
https://github.com/llvm/llvm-project/pull/150468
___
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/evelez7 closed
https://github.com/llvm/llvm-project/pull/150469
___
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/evelez7 closed
https://github.com/llvm/llvm-project/pull/150470
___
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/evelez7 reopened
https://github.com/llvm/llvm-project/pull/150470
___
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/evelez7 reopened
https://github.com/llvm/llvm-project/pull/150468
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -23,7 +20,16 @@ using ::llvm::memprof::encodeHistogramCount;
namespace {
template char *WriteBytes(const T &Pod, char *Buffer) {
- *(T *)Buffer = Pod;
+ static_assert(is_trivially_copyable::value, "T must be POD");
+ const uint8_t *Src = reinterpret_cast(&Pod);
+ for (
@@ -23,7 +20,16 @@ using ::llvm::memprof::encodeHistogramCount;
namespace {
template char *WriteBytes(const T &Pod, char *Buffer) {
- *(T *)Buffer = Pod;
+ static_assert(is_trivially_copyable::value, "T must be POD");
+ const uint8_t *Src = reinterpret_cast(&Pod);
+ for (
https://github.com/evelez7 closed
https://github.com/llvm/llvm-project/pull/150470
___
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/evelez7 closed
https://github.com/llvm/llvm-project/pull/150468
___
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/phoebewang approved this pull request.
https://github.com/llvm/llvm-project/pull/150402
___
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/phoebewang approved this pull request.
https://github.com/llvm/llvm-project/pull/150478
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
phoebewang wrote:
> @phoebewang What do you think about merging this PR to the release branch?
LGTM.
https://github.com/llvm/llvm-project/pull/150478
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bi
https://github.com/evelez7 updated
https://github.com/llvm/llvm-project/pull/150470
>From 98172493abfb2c93caefe2424dd17b93d32c17a0 Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Tue, 22 Jul 2025 21:15:36 -0700
Subject: [PATCH] [clang-doc] add param comments to comment template
---
clang-too
https://github.com/evelez7 updated
https://github.com/llvm/llvm-project/pull/150469
>From 6f213799caf42bb3ba0c00822cef55a2e2948cb4 Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Tue, 22 Jul 2025 21:49:57 -0700
Subject: [PATCH] [clang-doc] Precommit param comment test changes
---
.../clang-d
https://github.com/evelez7 updated
https://github.com/llvm/llvm-project/pull/150468
>From b388252f5857e5004cfd26ab05037f13df66657b Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Fri, 18 Jul 2025 13:03:07 -0700
Subject: [PATCH] [clang-doc] generate comments for functions
Change the function p
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/149026
>From 15d9c6ac5705ebceb5c3a8656b2392caf8da6b13 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Wed, 16 Jul 2025 13:06:08 +0900
Subject: [PATCH] AMDGPU: Add a few missing mfma rewrite tests
Test other splitti
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/149026
>From 15d9c6ac5705ebceb5c3a8656b2392caf8da6b13 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Wed, 16 Jul 2025 13:06:08 +0900
Subject: [PATCH] AMDGPU: Add a few missing mfma rewrite tests
Test other splitti
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/149027
>From bcdb0d78fe8c227e7b2c9b539db496950332f66b Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Fri, 11 Jul 2025 12:57:13 +0900
Subject: [PATCH] AMDGPU: Handle rewriting non-tied MFMA to AGPR form
If src2 and
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/149027
>From bcdb0d78fe8c227e7b2c9b539db496950332f66b Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Fri, 11 Jul 2025 12:57:13 +0900
Subject: [PATCH] AMDGPU: Handle rewriting non-tied MFMA to AGPR form
If src2 and
https://github.com/lenary approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/150556
___
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/arsenm approved this pull request.
There's probably no point in keeping all the constant codegen test cases,
unless you have a way to get the test to skip the simplification
https://github.com/llvm/llvm-project/pull/150395
___
llvm
@@ -1,40 +1,43 @@
;; Test if temporary labels are generated for each indirect callsite with a
callee_type metadata.
-;; Test if the .callgraph section contains the numerical callee type id for
each of the temporary
-;; labels generated.
+;; Test if the .callgraph section cont
@@ -2869,9 +2870,23 @@ static void setLinkageForGV(llvm::GlobalValue *GV, const
NamedDecl *ND) {
GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
}
+static bool hasExistingGeneralizedTypeMD(llvm::Function *F) {
+ llvm::MDNode *MD = F->getMetadata(llvm::LLVMContext
https://github.com/ilovepi edited
https://github.com/llvm/llvm-project/pull/150470
___
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/ilovepi approved this pull request.
LGTM. Consider squashing this with the precommit tests, though. It's pretty
clear how the output changed, and all the tests just end up dropping `-NOT`,
which isn't great. plus I'd expect those tests to fail when something like a
tag match
ilovepi wrote:
Since you're just dropping the NOT prefix in the next patch, I'd consider just
squashing them together. Left a similar comment up the stack.
https://github.com/llvm/llvm-project/pull/150469
___
llvm-branch-commits mailing list
llvm-bran
ilovepi wrote:
Not totally convinced these are great precommit tests. TOday we don't emit
these, but I think some of the tags will probably end up matching on later
lines (at least I'd expect them to). Would be fine dropping this and just
taking the patch after, since its clear how the functio
https://github.com/evelez7 edited
https://github.com/llvm/llvm-project/pull/150470
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -259,7 +259,24 @@ HTML-CALC:
HTML-CALC:
HTML-CALC:
HTML-CALC:
-HTML-CALC:
+HTML-CALC-NOT:
ilovepi wrote:
Won't this check bre
https://github.com/ilovepi edited
https://github.com/llvm/llvm-project/pull/150468
___
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/ilovepi approved this pull request.
https://github.com/llvm/llvm-project/pull/150468
___
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/ilovepi edited
https://github.com/llvm/llvm-project/pull/150467
___
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/ilovepi approved this pull request.
https://github.com/llvm/llvm-project/pull/150467
___
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/jdenny-ornl edited
https://github.com/llvm/llvm-project/pull/128785
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -850,27 +852,35 @@ llvm::getLoopEstimatedTripCount(Loop *L,
getEstimatedTripCount(LatchBranch, L, ExitWeight)) {
if (EstimatedLoopInvocationWeight)
*EstimatedLoopInvocationWeight = ExitWeight;
+ if (auto EstimatedTripCount =
jd
@@ -7866,6 +7866,17 @@ The attributes in this metadata is added to all followup
loops of the
loop distribution pass. See
:ref:`Transformation Metadata ` for details.
+'``llvm.loop.estimated_trip_count``' Metadata
jdenny-ornl wrote:
This is now part of PR #14
@@ -7866,6 +7866,17 @@ The attributes in this metadata is added to all followup
loops of the
loop distribution pass. See
:ref:`Transformation Metadata ` for details.
+'``llvm.loop.estimated_trip_count``' Metadata
+
+
+This metad
@@ -7866,6 +7866,17 @@ The attributes in this metadata is added to all followup
loops of the
loop distribution pass. See
:ref:`Transformation Metadata ` for details.
+'``llvm.loop.estimated_trip_count``' Metadata
+
+
---
https://github.com/jdenny-ornl edited
https://github.com/llvm/llvm-project/pull/128785
___
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/aaupov edited
https://github.com/llvm/llvm-project/pull/150488
___
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/aaupov edited
https://github.com/llvm/llvm-project/pull/150488
___
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/aaupov updated
https://github.com/llvm/llvm-project/pull/150488
>From faf7d914093c87804e9dbca349b1a2bca0aefd18 Mon Sep 17 00:00:00 2001
From: Amir Ayupov
Date: Thu, 24 Jul 2025 13:56:18 -0700
Subject: [PATCH] updated test
Created using spr 1.3.4
---
bolt/test/X86/unclaimed-
https://github.com/aaupov edited
https://github.com/llvm/llvm-project/pull/150488
___
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/hanhanW closed
https://github.com/llvm/llvm-project/pull/149624
___
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/joaosaffran updated
https://github.com/llvm/llvm-project/pull/148919
>From 831dc1cab2662151e0c4a95883f6fb73afc595d4 Mon Sep 17 00:00:00 2001
From: joaosaffran
Date: Tue, 15 Jul 2025 01:59:47 +
Subject: [PATCH 1/7] adding validation
---
.../DXILPostOptimizationValidation
@@ -0,0 +1,15 @@
+; RUN: not opt -S -passes='dxil-post-optimization-validation'
-mtriple=dxil-pc-shadermodel6.6-compute %s 2>&1 | FileCheck %s
+; CHECK: error: register CBuffer (space=0, register=0) is overlapping with
register CBuffer (space=0, register=2), verify your root sig
https://github.com/joaosaffran updated
https://github.com/llvm/llvm-project/pull/148919
>From 831dc1cab2662151e0c4a95883f6fb73afc595d4 Mon Sep 17 00:00:00 2001
From: joaosaffran
Date: Tue, 15 Jul 2025 01:59:47 +
Subject: [PATCH 1/6] adding validation
---
.../DXILPostOptimizationValidation
https://github.com/teresajohnson approved this pull request.
https://github.com/llvm/llvm-project/pull/150506
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-pgo
Author: Snehasish Kumar (snehasish)
Changes
The test is fine though it seems the checks weren't being enforced because of
the typo.
---
Full diff: https://github.com/llvm/llvm-project/pull/150506.diff
1 Files Affected:
- (modified) llvm/test/too
https://github.com/snehasish ready_for_review
https://github.com/llvm/llvm-project/pull/150506
___
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/snehasish edited
https://github.com/llvm/llvm-project/pull/150506
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
snehasish 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/150506?utm_source=stack-comment-downstack-mergeability-warning
https://github.com/snehasish created
https://github.com/llvm/llvm-project/pull/150506
None
>From f57f3845aa1a6f03a605096e57e5345ebf3131b5 Mon Sep 17 00:00:00 2001
From: Snehasish Kumar
Date: Thu, 24 Jul 2025 06:25:00 +
Subject: [PATCH] Fix FileCheck prefix in the histogram test.
---
.../
Author: Kiran Chandramohan
Date: 2025-07-24T20:43:47+01:00
New Revision: d69ea933c6f243a17d37609d4ac29712dd0b20c6
URL:
https://github.com/llvm/llvm-project/commit/d69ea933c6f243a17d37609d4ac29712dd0b20c6
DIFF:
https://github.com/llvm/llvm-project/commit/d69ea933c6f243a17d37609d4ac29712dd0b20c6.
Author: Changpeng Fang
Date: 2025-07-24T12:42:30-07:00
New Revision: ecd793cbb1888507850b806699e97fc978d15dd7
URL:
https://github.com/llvm/llvm-project/commit/ecd793cbb1888507850b806699e97fc978d15dd7
DIFF:
https://github.com/llvm/llvm-project/commit/ecd793cbb1888507850b806699e97fc978d15dd7.diff
Author: Mike Crowe
Date: 2025-07-24T22:40:41+03:00
New Revision: 60bf97983df3efeb17f6db19b811b68fa74df9aa
URL:
https://github.com/llvm/llvm-project/commit/60bf97983df3efeb17f6db19b811b68fa74df9aa
DIFF:
https://github.com/llvm/llvm-project/commit/60bf97983df3efeb17f6db19b811b68fa74df9aa.diff
LO
Author: Kiran Chandramohan
Date: 2025-07-24T20:33:43+01:00
New Revision: 32c9e86d027efc84ba696a38ef626ae04d306ec0
URL:
https://github.com/llvm/llvm-project/commit/32c9e86d027efc84ba696a38ef626ae04d306ec0
DIFF:
https://github.com/llvm/llvm-project/commit/32c9e86d027efc84ba696a38ef626ae04d306ec0.
https://github.com/HazardyKnusperkeks approved this pull request.
https://github.com/llvm/llvm-project/pull/150458
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commi
https://github.com/HazardyKnusperkeks approved this pull request.
https://github.com/llvm/llvm-project/pull/150457
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commi
@@ -232,6 +245,44 @@ initRSBindingValidation(const mcdxbc::RootSignatureDesc
&RSD,
return Validation;
}
+static SmallVector
+getRootDescriptorsBindingInfo(const mcdxbc::RootSignatureDesc &RSD,
+ dxbc::ShaderVisibility Visibility) {
+
+ SmallVec
https://github.com/fhahn commented:
Title + description should be updated, thanks!
https://github.com/llvm/llvm-project/pull/149815
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/
https://github.com/fhahn edited https://github.com/llvm/llvm-project/pull/149815
___
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/fhahn edited https://github.com/llvm/llvm-project/pull/149815
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -0,0 +1,14 @@
+; RUN: not opt -S -passes='dxil-post-optimization-validation'
-mtriple=dxil-pc-shadermodel6.6-compute %s 2>&1 | FileCheck %s
+; CHECK: error: register Sampler (space=0, register=42) is overlapping with
register Sampler (space=0, register=42), verify your root s
@@ -0,0 +1,15 @@
+; RUN: not opt -S -passes='dxil-post-optimization-validation'
-mtriple=dxil-pc-shadermodel6.6-compute %s 2>&1 | FileCheck %s
+; CHECK: error: register CBuffer (space=0, register=0) is overlapping with
register CBuffer (space=0, register=2), verify your root sig
llvmbot wrote:
@llvm/pr-subscribers-backend-amdgpu
Author: Stanislav Mekhanoshin (rampitec)
Changes
We have a choice to use a scalar or vector prefetch for an uniform
pointer. Since we do not have scalar stores our scalar cache is
practically readonly. The rw argument of the prefetch intri
https://github.com/rampitec ready_for_review
https://github.com/llvm/llvm-project/pull/150493
___
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/bob80905 approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/147573
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
rampitec 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/150493?utm_source=stack-comment-downstack-mergeability-warning"
https://github.com/rampitec created
https://github.com/llvm/llvm-project/pull/150493
We have a choice to use a scalar or vector prefetch for an uniform
pointer. Since we do not have scalar stores our scalar cache is
practically readonly. The rw argument of the prefetch intrinsic is
used to force
@@ -232,6 +245,44 @@ initRSBindingValidation(const mcdxbc::RootSignatureDesc
&RSD,
return Validation;
}
+static SmallVector
+getRootDescriptorsBindingInfo(const mcdxbc::RootSignatureDesc &RSD,
+ dxbc::ShaderVisibility Visibility) {
+
+ SmallVec
https://github.com/aaupov created
https://github.com/llvm/llvm-project/pull/150488
`getFallthroughsInTrace` for non-BAT functions requires CFG even for
fdata output only. Since all modes (BAT/non-BAT, YAML/fdata) need CFG:
- drop special BAT/fdata handling in `RewriteInstance::run`,
- in `getFal
https://github.com/rampitec updated
https://github.com/llvm/llvm-project/pull/150466
>From d245f4b7dad916b1cfc54424bbd5aa94f3bb1173 Mon Sep 17 00:00:00 2001
From: Stanislav Mekhanoshin
Date: Thu, 24 Jul 2025 10:06:26 -0700
Subject: [PATCH] [AMDGPU] gfx1250 vmem prefetch target intrinsics and bu
llvmbot wrote:
@llvm/pr-subscribers-libcxx
Author: None (llvmbot)
Changes
Backport d750c6de8a75cbe2bc16c136764195471be8f0b7
Requested by: @ldionne
---
Full diff: https://github.com/llvm/llvm-project/pull/150481.diff
9 Files Affected:
- (modified) libcxx/include/CMakeLists.txt (+1)
-
llvmbot wrote:
@ldionne What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/150481
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listi
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/150481
___
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/llvmbot created
https://github.com/llvm/llvm-project/pull/150481
Backport d750c6de8a75cbe2bc16c136764195471be8f0b7
Requested by: @ldionne
>From ef25cd0673f918cb5ca422e58cf4e9af0c2325f6 Mon Sep 17 00:00:00 2001
From: Konstantin Varlamov
Date: Thu, 24 Jul 2025 10:39:48 -0700
@@ -4717,6 +4697,12 @@ static LogicalResult commonVerifierPackAndUnPackOp(OpTy
packOrUnPack) {
return op->emitError("mismatch in inner tile sizes specified and shaped of
"
"tiled dimension in the packed type");
}
+ if (failed(verifyCompatibleSh
@@ -1824,27 +1825,47 @@ func.func @unpack_invalid_outer_dims_perm(%source:
tensor<128x256xf32>, %dest: t
// -
+func.func @pack_with_artificial_padding(%input: tensor<9xf32>, %output:
tensor<3x8xf32>) -> tensor<3x8xf32> {
+ %cst = arith.constant 0.0 : f32
+ // expected
@@ -150,9 +150,15 @@ def Linalg_PackOp : Linalg_RelayoutOp<"pack", [
`padding_value` specifies a padding value at the boundary on non-perfectly
divisible dimensions. Padding is optional:
-- If absent, it is UB if the tile does not perfectly divide the dimension.
+
hanhanW wrote:
Yes, updated. Thanks for pointing it out!
https://github.com/llvm/llvm-project/pull/149624
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/
https://github.com/hanhanW updated
https://github.com/llvm/llvm-project/pull/149624
>From 6de929abea2ad4fac10605e333050b64eedbb904 Mon Sep 17 00:00:00 2001
From: hanhanW
Date: Tue, 22 Jul 2025 15:15:08 -0700
Subject: [PATCH 1/4] [mlir][linalg] Restrict linalg.pack to not have extra
padding siz
llvmbot wrote:
@llvm/pr-subscribers-backend-x86
Author: None (llvmbot)
Changes
Backport 33455825428f9e1b7998a66e228da7f6d483acf8
Requested by: @RKSimon
---
Full diff: https://github.com/llvm/llvm-project/pull/150478.diff
2 Files Affected:
- (modified) llvm/lib/Target/X86/X86ISelLoweri
llvmbot wrote:
@phoebewang What do you think about merging this PR to the release branch?
https://github.com/llvm/llvm-project/pull/150478
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/li
https://github.com/llvmbot milestoned
https://github.com/llvm/llvm-project/pull/150478
___
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/llvmbot created
https://github.com/llvm/llvm-project/pull/150478
Backport 33455825428f9e1b7998a66e228da7f6d483acf8
Requested by: @RKSimon
>From a8e26aa4156c652f81601845f39a6224a5f746c9 Mon Sep 17 00:00:00 2001
From: Simon Pilgrim
Date: Wed, 23 Jul 2025 11:22:38 +0100
Subjec
https://github.com/mshockwave approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/149968
___
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/shiltian approved this pull request.
https://github.com/llvm/llvm-project/pull/150466
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
mizvekov wrote:
> H yea I don't think we want to be losing the scope qualifiers for the
> typenames. What does LLDB have to do to retain those?
The answer to that depends on what LLDB wants and can do here.
The status quo is, the types produced in the places changed here are not valid
as-
@@ -150,9 +150,15 @@ def Linalg_PackOp : Linalg_RelayoutOp<"pack", [
`padding_value` specifies a padding value at the boundary on non-perfectly
divisible dimensions. Padding is optional:
-- If absent, it is UB if the tile does not perfectly divide the dimension.
+
llvmbot wrote:
@llvm/pr-subscribers-clang-tools-extra
Author: Erick Velez (evelez7)
Changes
T
---
Full diff: https://github.com/llvm/llvm-project/pull/150470.diff
3 Files Affected:
- (modified) clang-tools-extra/clang-doc/JSONGenerator.cpp (+4-2)
- (modified) clang-tools-extra/clang-d
https://github.com/evelez7 ready_for_review
https://github.com/llvm/llvm-project/pull/150470
___
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/evelez7 edited
https://github.com/llvm/llvm-project/pull/150470
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
llvmbot wrote:
@llvm/pr-subscribers-clang-tools-extra
Author: Erick Velez (evelez7)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/150469.diff
1 Files Affected:
- (modified) clang-tools-extra/test/clang-doc/basic-project.mustache.test
(+90-2)
``diff
diff
evelez7 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/150470?utm_source=stack-comment-downstack-mergeability-warning";
evelez7 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/150469?utm_source=stack-comment-downstack-mergeability-warning";
https://github.com/evelez7 ready_for_review
https://github.com/llvm/llvm-project/pull/150469
___
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/evelez7 created
https://github.com/llvm/llvm-project/pull/150470
None
>From 9ca2a7bdbeaf327333be8d0fef358dd600993996 Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Tue, 22 Jul 2025 21:15:36 -0700
Subject: [PATCH] [clang-doc] add param comments to comment template
---
cla
https://github.com/evelez7 created
https://github.com/llvm/llvm-project/pull/150469
None
>From 625b4701a40a80f79b5e13b90b58a26e8c924418 Mon Sep 17 00:00:00 2001
From: Erick Velez
Date: Tue, 22 Jul 2025 21:49:57 -0700
Subject: [PATCH] [clang-doc] Precommit param comment test changes
---
.../c
llvmbot wrote:
@llvm/pr-subscribers-clang-tools-extra
Author: Erick Velez (evelez7)
Changes
Change the function partial to enable comments to be generated for
functions. This only enables the brief comments in the basic project.
---
Full diff: https://github.com/llvm/llvm-project/pull/150
1 - 100 of 265 matches
Mail list logo