Skip to content

Commit be8ce60

Browse files
authored
1 parent 20ada30 commit be8ce60

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

WORKSPACE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ workspace(name = "stablehlo")
1717

1818
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
1919

20-
LLVM_COMMIT = "dd3addf954ac7e704fccc7d011217ba10461c883"
20+
LLVM_COMMIT = "ac9049df7e62e2ca4dc5d103593b51639b5715e3"
2121

22-
LLVM_SHA256 = "f2f7ef9a6eb597b8a53186878122269d673fca742470f3bdb5bac18a47e9b8be"
22+
LLVM_SHA256 = "ea890ee3c13d9b2d70a359299a0b810c8bae9c729c5a94d81f5b304bf26f34b6"
2323

2424
http_archive(
2525
name = "llvm-raw",

build_tools/llvm_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dd3addf954ac7e704fccc7d011217ba10461c883
1+
ac9049df7e62e2ca4dc5d103593b51639b5715e3

stablehlo/conversions/tosa/tests/unary.mlir

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ func.func @negate(%arg : tensor<10xf32>) -> tensor<10xf32> {
7979

8080
// CHECK-LABEL: @slice
8181
func.func @slice(%arg : tensor<4x3xf32>) -> tensor<2x2xf32> {
82-
// CHECK: %[[SIZE:.*]] = tosa.const_shape {values = dense<[2, 1]> : tensor<2xindex>} : () -> !tosa.shape<2>
83-
// CHECK: %[[START:.*]] = tosa.const_shape {values = dense<2> : tensor<2xindex>} : () -> !tosa.shape<2>
82+
// CHECK-DAG: %[[SIZE:.*]] = tosa.const_shape {values = dense<[2, 1]> : tensor<2xindex>} : () -> !tosa.shape<2>
83+
// CHECK-DAG: %[[START:.*]] = tosa.const_shape {values = dense<2> : tensor<2xindex>} : () -> !tosa.shape<2>
8484
// CHECK: tosa.slice %arg0, %[[SIZE]], %[[START]]
8585
%0 = "stablehlo.slice"(%arg) {
8686
start_indices = array<i64: 2, 1>,

0 commit comments

Comments
 (0)