Skip to content

Commit bf8f06e

Browse files
1 parent 0f4b396 commit bf8f06e

File tree

4 files changed

+161
-150
lines changed

4 files changed

+161
-150
lines changed

deps.bzl

Lines changed: 6 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 = "f9031f00f2c90bc0af274b45ec3e169b5250a688"
26-
LLVM_SHA256 = "695896a5c3b4011043c27a43ac17079ee725e2d72e3b664868f09626a187daf3"
25+
LLVM_COMMIT = "6c64c8a6f3f77c30745c751d4163ff6bf2fc323b"
26+
LLVM_SHA256 = "a27f8452e8a4267acb7bf59ea4dae012cec22e37624a67206b927985554e3640"
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 = "98e08023bbf71e00ab81e980eac9f7c96f1f24b4"
43-
TORCH_MLIR_SHA256 = "b3bac5863c73dc97bde06a032a928fe0fe586c44c8005bdbb3edd9def056ef0d"
42+
TORCH_MLIR_COMMIT = "30c519369ed7eabad0282d0f874500a9b41fcbbd"
43+
TORCH_MLIR_SHA256 = "9598ab5bb4a75cd63a078fccb19b380f753906153a92ff7ee5dca3eba93deba5"
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 = "c28d55e91b4a5daaff18a33ce7e9bbd0f171256a"
59-
STABLEHLO_SHA256 = "b7c18132c092ec60604e8869685a745a2b31fc1edfc64caf5b19ddce0f1cee60"
58+
STABLEHLO_COMMIT = "6e403b1aa6a71f5eaa09cc720e4ad42f692745e6"
59+
STABLEHLO_SHA256 = "5b6a207f7c41aa986866103a4929e7146acff05830234df5714a45c7100cae3c"
6060
http_archive(
6161
name = "stablehlo",
6262
sha256 = STABLEHLO_SHA256,

include/mlir-tcp/Dialect/IR/TcpOps.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#pragma once
1111

1212
#include "mlir/Dialect/Func/IR/FuncOps.h"
13-
#include "mlir/Dialect/Quant/QuantTypes.h"
13+
#include "mlir/Dialect/Quant/IR/QuantTypes.h"
1414
#include "mlir/IR/Attributes.h"
1515
#include "mlir/IR/BuiltinTypes.h"
1616
#include "mlir/IR/Dialect.h"

lib/Dialect/IR/TcpTilingInterfaceImpl.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ struct SliceOpTiling
143143
getValueOrCreateConstantIndexOp(b, loc, sizes), sliceOp.getStrides());
144144

145145
return TilingResult{{returnSliceOp},
146-
SmallVector<Value>(returnSliceOp->getResults())};
146+
SmallVector<Value>(returnSliceOp->getResults()),
147+
{extractOp}};
147148
}
148149

149150
LogicalResult

0 commit comments

Comments
 (0)