[llvm] Remove `*` from generic Linalg/Vector rules in CODEOWNERS (PR #96581)
Diego Caballero via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 24 18:51:27 PDT 2024
https://github.com/dcaballe created https://github.com/llvm/llvm-project/pull/96581
The PR removes the `*` from the generic MLIR Vector/Linalg rules. The `*` symbol keeps the match local to the files in the directory, excluding sub-directories, which was not the intention when I added these rules.
>From b38013a03bfeeeff37201826e371b51164b20fa9 Mon Sep 17 00:00:00 2001
From: Diego Caballero <17800977+dcaballe at users.noreply.github.com>
Date: Mon, 24 Jun 2024 18:47:30 -0700
Subject: [PATCH] Remove `*` from generic Linalg/Vector rules in CODEOWNERS
The PR removes the `*` from the generic MLIR Vector/Linalg rules. The `*` symbol keeps the match local to the files in the directory, excluding sub-directories, which was not the intention when I added these rules.
---
.github/CODEOWNERS | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index b28ed724f517d..349e99de1ae6f 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -64,8 +64,8 @@ clang/test/AST/Interp/ @tbaederr
/mlir/Dialect/*/Transforms/Bufferize.cpp @matthias-springer
# Linalg Dialect in MLIR.
-/mlir/include/mlir/Dialect/Linalg/* @dcaballe @nicolasvasilache @rengolin
-/mlir/lib/Dialect/Linalg/* @dcaballe @nicolasvasilache @rengolin
+/mlir/include/mlir/Dialect/Linalg @dcaballe @nicolasvasilache @rengolin
+/mlir/lib/Dialect/Linalg @dcaballe @nicolasvasilache @rengolin
/mlir/lib/Dialect/Linalg/Transforms/DecomposeLinalgOps.cpp @MaheshRavishankar @nicolasvasilache
/mlir/lib/Dialect/Linalg/Transforms/DropUnitDims.cpp @MaheshRavishankar @nicolasvasilache
/mlir/lib/Dialect/Linalg/Transforms/ElementwiseOpFusion.cpp @MaheshRavishankar @nicolasvasilache
@@ -85,8 +85,8 @@ clang/test/AST/Interp/ @tbaederr
/mlir/**/*VectorToSCF* @banach-space @dcaballe @matthias-springer @nicolasvasilache
/mlir/**/*VectorToLLVM* @banach-space @dcaballe @nicolasvasilache
/mlir/**/*X86Vector* @aartbik @dcaballe @nicolasvasilache
-/mlir/include/mlir/Dialect/Vector/* @dcaballe @nicolasvasilache
-/mlir/lib/Dialect/Vector/* @dcaballe @nicolasvasilache
+/mlir/include/mlir/Dialect/Vector @dcaballe @nicolasvasilache
+/mlir/lib/Dialect/Vector @dcaballe @nicolasvasilache
/mlir/lib/Dialect/Vector/Transforms/* @hanhanW @nicolasvasilache
/mlir/lib/Dialect/Vector/Transforms/VectorEmulateNarrowType.cpp @MaheshRavishankar @nicolasvasilache
/mlir/**/*EmulateNarrowType* @dcaballe @hanhanW
More information about the llvm-commits
mailing list