Skip to content

Commit

Permalink
Integrate LLVM at llvm/llvm-project@2918e779a954
Browse files Browse the repository at this point in the history
Updates LLVM usage to match
[2918e779a954](llvm/llvm-project@2918e779a954)

PiperOrigin-RevId: 683994000
  • Loading branch information
HEIR Team authored and copybara-github committed Oct 9, 2024
1 parent 185c7bb commit 6b6f253
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bazel/import_llvm.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ load(

def import_llvm(name):
"""Imports LLVM."""
LLVM_COMMIT = "82f5acfbec65e1a645d902f746253eeaf0bd2d70"
LLVM_COMMIT = "2918e779a9545a66c0031b03b3af5bf4d8517cec"

new_git_repository(
name = name,
Expand Down
5 changes: 5 additions & 0 deletions tests/polynomial/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,10 @@ glob_lit_tests(
name = "all_tests",
data = ["@heir//tests:test_utilities"],
driver = "@heir//tests:run_lit.sh",
exclude = [
"lower_add.mlir", # b/371961315
"lower_mul.mlir", # b/371961315
"lower_mul_runner.mlir", # b/371961315
],
test_file_exts = ["mlir"],
)
5 changes: 4 additions & 1 deletion tests/polynomial/runner/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ glob_lit_tests(
"@heir//tests:test_utilities",
],
driver = "@heir//tests:run_lit.sh",
exclude = ["ntt_benchmark.mlir"],
exclude = [
"ntt_benchmark.mlir",
"lower_mul_*.mlir", # b/371961315
],
test_file_exts = ["mlir"],
)

0 comments on commit 6b6f253

Please sign in to comment.