[llvm] [mlir] Fix nested codeowners for vector dialect (PR #115473)

Kunwar Grover via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 20 02:10:37 PST 2025


https://github.com/Groverkss updated https://github.com/llvm/llvm-project/pull/115473

>From f24141a54a783f907cfd9ffb1f85cc00c9a770bc Mon Sep 17 00:00:00 2001
From: Kunwar Grover <groverkss at gmail.com>
Date: Fri, 8 Nov 2024 12:51:36 +0000
Subject: [PATCH 1/3] [mlir] Fix nested codeowners for vector dialect

Due to how CODEOWNERS works, if a file matches two rules, the later rule will take precedence.

Because of this, /mlir/include/mlir/Dialect/Vector rules were not matching against /mlir/include/mlir/Dialect/Vector/IR .

This patch adds users in the directory rules, to the finer grained rules, which I'm guessing was the intended effect that they expected when they were added.
---
 .github/CODEOWNERS | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 018b64364e284..8cdc49ebfa712 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -83,10 +83,10 @@
 /mlir/**/*VectorToLLVM* @banach-space @dcaballe @nicolasvasilache
 /mlir/**/*X86Vector* @aartbik @dcaballe @nicolasvasilache
 /mlir/include/mlir/Dialect/Vector @banach-space @dcaballe @nicolasvasilache @Groverkss
-/mlir/include/mlir/Dialect/Vector/IR @kuhar
+/mlir/include/mlir/Dialect/Vector/IR @kuhar @banach-space @dcaballe @nicolasvasilache @Groverkss
 /mlir/lib/Dialect/Vector @banach-space @dcaballe @nicolasvasilache @Groverkss
-/mlir/lib/Dialect/Vector/Transforms/* @banach-space @dcaballe @hanhanW @nicolasvasilache
-/mlir/lib/Dialect/Vector/Transforms/VectorEmulateNarrowType.cpp @banach-space @dcaballe @MaheshRavishankar @nicolasvasilache
+/mlir/lib/Dialect/Vector/Transforms/* @banach-space @dcaballe @hanhanW @nicolasvasilache @Groverkss
+/mlir/lib/Dialect/Vector/Transforms/VectorEmulateNarrowType.cpp @banach-space @dcaballe @hanhanW @MaheshRavishankar @nicolasvasilache @Groverkss
 /mlir/**/*EmulateNarrowType* @dcaballe @hanhanW
 
 # Presburger library in MLIR

>From ee9988630bed402a56c1bd43186f16cd8435b4a3 Mon Sep 17 00:00:00 2001
From: Kunwar Grover <groverkss at gmail.com>
Date: Thu, 20 Feb 2025 15:39:26 +0530
Subject: [PATCH 2/3] Sort alphabetically

---
 .github/CODEOWNERS | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 8cdc49ebfa712..533be1e042e8a 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -82,11 +82,11 @@
 /mlir/**/*VectorToSCF* @banach-space @dcaballe @matthias-springer @nicolasvasilache
 /mlir/**/*VectorToLLVM* @banach-space @dcaballe @nicolasvasilache
 /mlir/**/*X86Vector* @aartbik @dcaballe @nicolasvasilache
-/mlir/include/mlir/Dialect/Vector @banach-space @dcaballe @nicolasvasilache @Groverkss
-/mlir/include/mlir/Dialect/Vector/IR @kuhar @banach-space @dcaballe @nicolasvasilache @Groverkss
-/mlir/lib/Dialect/Vector @banach-space @dcaballe @nicolasvasilache @Groverkss
-/mlir/lib/Dialect/Vector/Transforms/* @banach-space @dcaballe @hanhanW @nicolasvasilache @Groverkss
-/mlir/lib/Dialect/Vector/Transforms/VectorEmulateNarrowType.cpp @banach-space @dcaballe @hanhanW @MaheshRavishankar @nicolasvasilache @Groverkss
+/mlir/include/mlir/Dialect/Vector @banach-space @dcaballe @Groverkss @nicolasvasilache
+/mlir/include/mlir/Dialect/Vector/IR @kuhar @banach-space @dcaballe @Groverkss @nicolasvasilache
+/mlir/lib/Dialect/Vector @banach-space @dcaballe @Groverkss @nicolasvasilache
+/mlir/lib/Dialect/Vector/Transforms/* @banach-space @dcaballe @Groverkss @hanhanW @nicolasvasilache
+/mlir/lib/Dialect/Vector/Transforms/VectorEmulateNarrowType.cpp @banach-space @dcaballe @Groverkss @hanhanW @MaheshRavishankar @nicolasvasilache
 /mlir/**/*EmulateNarrowType* @dcaballe @hanhanW
 
 # Presburger library in MLIR

>From b7c1a428b7f76898481e8c23c9b1ce5639576b42 Mon Sep 17 00:00:00 2001
From: Kunwar Grover <groverkss at gmail.com>
Date: Thu, 20 Feb 2025 15:40:27 +0530
Subject: [PATCH 3/3] sort

---
 .github/CODEOWNERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 533be1e042e8a..adfbbabe4ef77 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -83,7 +83,7 @@
 /mlir/**/*VectorToLLVM* @banach-space @dcaballe @nicolasvasilache
 /mlir/**/*X86Vector* @aartbik @dcaballe @nicolasvasilache
 /mlir/include/mlir/Dialect/Vector @banach-space @dcaballe @Groverkss @nicolasvasilache
-/mlir/include/mlir/Dialect/Vector/IR @kuhar @banach-space @dcaballe @Groverkss @nicolasvasilache
+/mlir/include/mlir/Dialect/Vector/IR @banach-space @dcaballe @Groverkss @kuhar @nicolasvasilache
 /mlir/lib/Dialect/Vector @banach-space @dcaballe @Groverkss @nicolasvasilache
 /mlir/lib/Dialect/Vector/Transforms/* @banach-space @dcaballe @Groverkss @hanhanW @nicolasvasilache
 /mlir/lib/Dialect/Vector/Transforms/VectorEmulateNarrowType.cpp @banach-space @dcaballe @Groverkss @hanhanW @MaheshRavishankar @nicolasvasilache



More information about the llvm-commits mailing list