Skip to content

Commit 5f38e79

Browse files
authored
Bump LLVM Version (#46)
1 parent 6b2f19e commit 5f38e79

7 files changed

+9
-9
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ include(FetchContent)
2929
FetchContent_Declare(
3030
or-tools
3131
GIT_REPOSITORY https://github.com/google/or-tools.git
32-
GIT_TAG v9.0
32+
GIT_TAG v9.11
3333
)
3434
FetchContent_MakeAvailable(or-tools)
3535
message(STATUS "Done fetching or-tools")

bazel/import_llvm.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ load(
88
def import_llvm(name):
99
"""Imports LLVM."""
1010

11-
# 2024-09-28
12-
LLVM_COMMIT = "29b92d07746fac26cd64c914bc9c5c3833974f6d"
11+
# 2025-02-01
12+
LLVM_COMMIT = "16d4453f2f5d9554ce39507fda0f33ce9066007b"
1313

1414
new_git_repository(
1515
name = name,

externals/llvm-project

tests/BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ filegroup(
1313
"@llvm-project//llvm:count",
1414
"@llvm-project//llvm:llc",
1515
"@llvm-project//llvm:not",
16-
"@llvm-project//mlir:mlir-cpu-runner",
16+
"@llvm-project//mlir:mlir-runner",
1717
"@llvm-project//mlir:mlir-opt",
1818
"@llvm-project//mlir:mlir-translate",
1919
"@mlir_tutorial_pip_deps_lit//:pkg",

tests/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ configure_lit_site_cfg(
88
set (MLIR_TUTORIAL_TEST_DEPENDS
99
FileCheck count not
1010
mlir-opt
11-
mlir-cpu-runner
11+
mlir-runner
1212
# tutorial-opt
1313
)
1414

tests/ctlz_runner.mlir

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// RUN: convert-func-to-llvm, \
66
// RUN: convert-cf-to-llvm, \
77
// RUN: reconcile-unrealized-casts)" \
8-
// RUN: | mlir-cpu-runner -e test_7i32_to_29 -entry-point-result=i32 > %t
8+
// RUN: | mlir-runner -e test_7i32_to_29 -entry-point-result=i32 > %t
99
// RUN: FileCheck %s --check-prefix=CHECK_TEST_7i32_TO_29 < %t
1010

1111
func.func @test_7i32_to_29() -> i32 {
@@ -23,7 +23,7 @@ func.func @test_7i32_to_29() -> i32 {
2323
// RUN: convert-func-to-llvm, \
2424
// RUN: convert-cf-to-llvm, \
2525
// RUN: reconcile-unrealized-casts)" \
26-
// RUN: | mlir-cpu-runner -e test_7i64_to_61 -entry-point-result=i64 > %t
26+
// RUN: | mlir-runner -e test_7i64_to_61 -entry-point-result=i64 > %t
2727
// RUN: FileCheck %s --check-prefix=CHECK_TEST_7i64_TO_61 < %t
2828
func.func @test_7i64_to_61() -> i64 {
2929
%arg = arith.constant 7 : i64

tests/lit.cmake.cfg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
tool_dirs = [config.project_tools_dir, config.llvm_tools_dir]
4747
tools = [
4848
"mlir-opt",
49-
"mlir-cpu-runner",
49+
"mlir-runner",
5050
"tutorial-opt"
5151
]
5252

0 commit comments

Comments
 (0)