Skip to content

Commit a595ea6

Browse files
committed
Merge branch 'main' into hgh/libcxx/P3044R2-sub-string_view-from-string
2 parents a3e3e95 + 4f33d7b commit a595ea6

File tree

786 files changed

+21621
-13087
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

786 files changed

+21621
-13087
lines changed

.ci/monolithic-linux.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ enable_cir="${6}"
3232
lit_args="-v --xunit-xml-output ${BUILD_DIR}/test-results.xml --use-unique-output-file-name --timeout=1200 --time-tests --succinct"
3333

3434
start-group "CMake"
35-
export PIP_BREAK_SYSTEM_PACKAGES=1
36-
pip install -q -r "${MONOREPO_ROOT}"/.ci/all_requirements.txt
3735

3836
# Set the system llvm-symbolizer as preferred.
3937
export LLVM_SYMBOLIZER_PATH=`which llvm-symbolizer`

.ci/utils.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,10 @@ function start-group {
5252
echo "Starting $groupname"
5353
fi
5454
}
55+
56+
export PIP_BREAK_SYSTEM_PACKAGES=1
57+
pip install -q -r "${MONOREPO_ROOT}"/.ci/all_requirements.txt
58+
59+
if [[ "$GITHUB_ACTIONS" != "" ]]; then
60+
python .ci/cache_lit_timing_files.py download
61+
fi

.github/CODEOWNERS

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@
5959
/mlir/**/BufferizableOpInterfaceImpl.* @matthias-springer
6060
/mlir/Dialect/*/Transforms/Bufferize.cpp @matthias-springer
6161

62+
# DLTI Dialect in MLIR
63+
/mlir/**/Dialect/DLTI @rolfmorel
64+
/mlir/**/DataLayoutInterfaces.* @rolfmorel
65+
6266
# Linalg Dialect in MLIR.
6367
/mlir/include/mlir/Dialect/Linalg @dcaballe @nicolasvasilache @rengolin
6468
/mlir/lib/Dialect/Linalg @dcaballe @nicolasvasilache @rengolin
@@ -96,9 +100,9 @@
96100
/mlir/lib/Dialect/Tensor/Transforms/* @hanhanW @nicolasvasilache
97101

98102
# Transform Dialect in MLIR.
99-
/mlir/include/mlir/Dialect/Transform/* @ftynse @nicolasvasilache
100-
/mlir/lib/Dialect/Transform/* @ftynse @nicolasvasilache
101-
/mlir/**/*TransformOps* @ftynse @nicolasvasilache
103+
/mlir/include/mlir/Dialect/Transform/* @ftynse @nicolasvasilache @rolfmorel
104+
/mlir/lib/Dialect/Transform/* @ftynse @nicolasvasilache @rolfmorel
105+
/mlir/**/*TransformOps* @ftynse @nicolasvasilache @rolfmorel
102106

103107
# SPIR-V Dialect in MLIR.
104108
/mlir/**/SPIRV/ @antiagainst @kuhar

.github/workflows/containers/github-action-ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM docker.io/library/ubuntu:24.04 as base
22
ENV LLVM_SYSROOT=/opt/llvm
33

44
FROM base as stage1-toolchain
5-
ENV LLVM_VERSION=21.1.0
5+
ENV LLVM_VERSION=21.1.1
66

77
RUN apt-get update && \
88
apt-get install -y \

.github/workflows/pr-code-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Get changed files
3535
id: changed-files
36-
uses: step-security/changed-files@3dbe17c78367e7d60f00d78ae6781a35be47b4a1 # v45.0.1
36+
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
3737
with:
3838
separator: ","
3939
skip_initial_fetch: true

clang-tools-extra/clang-tidy/ClangTidy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/// \file This file implements a clang-tidy tool.
1010
///
1111
/// This tool uses the Clang Tooling infrastructure, see
12-
/// http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
12+
/// https://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
1313
/// for details on setting it up with LLVM source tree.
1414
///
1515
//===----------------------------------------------------------------------===//

clang-tools-extra/clang-tidy/ClangTidyDiagnosticConsumer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/// and ClangTidyError classes.
1111
///
1212
/// This tool uses the Clang Tooling infrastructure, see
13-
/// http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
13+
/// https://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
1414
/// for details on setting it up with LLVM source tree.
1515
///
1616
//===----------------------------------------------------------------------===//

clang-tools-extra/clang-tidy/abseil/CleanupCtadCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace clang::tidy::abseil {
1818
/// deduction (CTAD), in C++17 and higher.
1919
///
2020
/// For the user-facing documentation see:
21-
/// http://clang.llvm.org/extra/clang-tidy/checks/abseil/cleanup-ctad.html
21+
/// https://clang.llvm.org/extra/clang-tidy/checks/abseil/cleanup-ctad.html
2222
class CleanupCtadCheck : public utils::TransformerClangTidyCheck {
2323
public:
2424
CleanupCtadCheck(StringRef Name, ClangTidyContext *Context);

clang-tools-extra/clang-tidy/abseil/DurationAdditionCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace clang::tidy::abseil {
1717
/// ``absl::Time`` domain.
1818
///
1919
/// For the user-facing documentation see:
20-
/// http://clang.llvm.org/extra/clang-tidy/checks/abseil/duration-addition.html
20+
/// https://clang.llvm.org/extra/clang-tidy/checks/abseil/duration-addition.html
2121
class DurationAdditionCheck : public ClangTidyCheck {
2222
public:
2323
DurationAdditionCheck(StringRef Name, ClangTidyContext *Context)

clang-tools-extra/clang-tidy/abseil/DurationComparisonCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace clang::tidy::abseil {
1717
/// domain.
1818
///
1919
/// For the user-facing documentation see:
20-
/// http://clang.llvm.org/extra/clang-tidy/checks/abseil/duration-comparison.html
20+
/// https://clang.llvm.org/extra/clang-tidy/checks/abseil/duration-comparison.html
2121
class DurationComparisonCheck : public ClangTidyCheck {
2222
public:
2323
DurationComparisonCheck(StringRef Name, ClangTidyContext *Context)

0 commit comments

Comments
 (0)