Skip to content

Commit 7b53fe4

Browse files
1 parent 0061ac5 commit 7b53fe4

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

deps.bzl

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def third_party_deps():
2222
path = local_llvm_repo_path(),
2323
)
2424
else:
25-
LLVM_COMMIT = "d16b21b17d13ecd88a068bb803df43e53d3b04ba"
26-
LLVM_SHA256 = "3c4ef24844c944cb0d888fe2344d4410f91f5b681e81b3f62ec1833e2bc595a4"
25+
LLVM_COMMIT = "f9031f00f2c90bc0af274b45ec3e169b5250a688"
26+
LLVM_SHA256 = "695896a5c3b4011043c27a43ac17079ee725e2d72e3b664868f09626a187daf3"
2727
http_archive(
2828
name = "llvm-raw",
2929
build_file_content = "# empty",
@@ -39,8 +39,8 @@ def third_party_deps():
3939
path = local_torch_mlir_repo_path(),
4040
)
4141
else:
42-
TORCH_MLIR_COMMIT = "0b46d1110aa9710a4c2935723c47dfe3d5c21fd3"
43-
TORCH_MLIR_SHA256 = "0e1cbea20c667abd73775f77b27747be842ff7fd7b4ac304a02d1d40df5761b7"
42+
TORCH_MLIR_COMMIT = "98e08023bbf71e00ab81e980eac9f7c96f1f24b4"
43+
TORCH_MLIR_SHA256 = "b3bac5863c73dc97bde06a032a928fe0fe586c44c8005bdbb3edd9def056ef0d"
4444
http_archive(
4545
name = "torch-mlir-raw",
4646
build_file_content = "# empty",
@@ -55,8 +55,8 @@ def third_party_deps():
5555
path = local_stablehlo_repo_path(),
5656
)
5757
else:
58-
STABLEHLO_COMMIT = "d41390c3a731ba038e6363f75fcd135e6f727039"
59-
STABLEHLO_SHA256 = "f278ef6aa908a9b8be482481dd408a7d6887a5117a4d425a0cb4a95a242585cc"
58+
STABLEHLO_COMMIT = "c28d55e91b4a5daaff18a33ce7e9bbd0f171256a"
59+
STABLEHLO_SHA256 = "b7c18132c092ec60604e8869685a745a2b31fc1edfc64caf5b19ddce0f1cee60"
6060
http_archive(
6161
name = "stablehlo",
6262
sha256 = STABLEHLO_SHA256,
@@ -94,6 +94,14 @@ def third_party_deps():
9494
],
9595
)
9696

97+
http_archive(
98+
name = "pybind11",
99+
build_file = "@llvm-raw//utils/bazel/third_party_build:pybind.BUILD",
100+
sha256 = "201966a61dc826f1b1879a24a3317a1ec9214a918c8eb035be2f30c3e9cfbdcb",
101+
strip_prefix = "pybind11-2.10.3",
102+
url = "https://github.com/pybind/pybind11/archive/v2.10.3.zip",
103+
)
104+
97105
http_archive(
98106
name = "com_google_googletest",
99107
sha256 = "b976cf4fd57b318afdb1bdb27fc708904b3e4bed482859eb94ba2b4bdd077fe2",

0 commit comments

Comments
 (0)