Skip to content

Commit

Permalink
Disable failing Pixel6/Vulkan linalg_ext reverse test again. (iree-or…
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottTodd authored and saienduri committed Jul 12, 2024
1 parent 7aff4ae commit 91d2a7d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 20 deletions.
51 changes: 32 additions & 19 deletions tests/e2e/linalg_ext_ops/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -102,33 +102,46 @@ iree_check_single_backend_test_suite(
target_backend = "rocm",
)

SPIRV_SRCS = enforce_glob(
# keep sorted
[
"reverse.mlir",
"scan.mlir",
"scatter.mlir",
"sort.mlir",
"winograd_input.mlir",
"winograd_output.mlir",
],
include = ["*.mlir"],
exclude = [
"attention.mlir",
"top-k.mlir",
],
)

iree_check_single_backend_test_suite(
name = "check_metal-spirv_vulkan",
srcs = SPIRV_SRCS,
srcs = enforce_glob(
# keep sorted
[
"reverse.mlir",
"scan.mlir",
"scatter.mlir",
"sort.mlir",
"winograd_input.mlir",
"winograd_output.mlir",
],
include = ["*.mlir"],
exclude = [
"attention.mlir",
"top-k.mlir",
],
),
driver = "metal",
target_backend = "metal-spirv",
)

iree_check_single_backend_test_suite(
name = "check_vulkan-spirv_vulkan",
srcs = SPIRV_SRCS,
srcs = enforce_glob(
# keep sorted
[
"scan.mlir",
"scatter.mlir",
"sort.mlir",
"winograd_input.mlir",
"winograd_output.mlir",
],
include = ["*.mlir"],
exclude = [
"attention.mlir",
"reverse.mlir", #TODO(#12415): disabled due to miscompilation on Pixel 6.
"top-k.mlir",
],
),
driver = "vulkan",
target_backend = "vulkan-spirv",
)
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/linalg_ext_ops/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ iree_check_single_backend_test_suite(
NAME
check_vulkan-spirv_vulkan
SRCS
"reverse.mlir"
"scan.mlir"
"scatter.mlir"
"sort.mlir"
Expand Down

0 comments on commit 91d2a7d

Please sign in to comment.