Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions tests/e2e/linalg/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ iree_check_single_backend_test_suite(
VMVX_SRCS = enforce_glob(
# keep sorted
[
"argmax.mlir",
"conv2d.mlir",
"gather_like_ops.mlir",
"index.mlir",
"narrow_n_matmuls.mlir",
"pack.mlir",
"pack_dynamic_inner_tiles.mlir",
Expand All @@ -84,10 +86,8 @@ VMVX_SRCS = enforce_glob(
],
include = ["*.mlir"],
exclude = [
"argmax.mlir",
"fp_to_subbyte.mlir",
"fp4_f32_conversion.mlir",
"index.mlir",
"large_linalg_matmul.mlir",
"subbyte_to_fp.mlir",
],
Expand Down Expand Up @@ -124,18 +124,18 @@ iree_check_single_backend_test_suite(
VULKAN_SRCS = enforce_glob(
# keep sorted
[
"argmax.mlir",
"conv2d.mlir",
"gather_like_ops.mlir",
"index.mlir",
"narrow_n_matmuls.mlir",
"softmax.mlir",
"subbyte_to_fp.mlir",
],
include = ["*.mlir"],
exclude = [
"argmax.mlir",
"fp_to_subbyte.mlir",
"fp4_f32_conversion.mlir",
"index.mlir",
"large_linalg_matmul.mlir",
"pack.mlir",
"pack_dynamic_inner_tiles.mlir",
Expand Down Expand Up @@ -221,20 +221,20 @@ ROCM_SRCS = enforce_glob(
# keep sorted
[
"argmax.mlir",
"conv2d.mlir",
"fp4_f32_conversion.mlir",
"fp_to_subbyte.mlir",
"gather_like_ops.mlir",
"index.mlir",
"narrow_n_matmuls.mlir",
"pack_i8.mlir",
"softmax.mlir",
"subbyte_to_fp.mlir",
"unpack.mlir",
],
include = ["*.mlir"],
exclude = [
"conv2d.mlir",
"fp_to_subbyte.mlir",
"fp4_f32_conversion.mlir",
"index.mlir",
"large_linalg_matmul.mlir",
"narrow_n_matmuls.mlir",
"subbyte_to_fp.mlir",
# https://github.com/llvm/llvm-project/issues/131386 causes
# See bug #20294
"pack.mlir",
Expand Down
10 changes: 10 additions & 0 deletions tests/e2e/linalg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ iree_check_single_backend_test_suite(
NAME
check_vmvx_local-task
SRCS
"argmax.mlir"
"conv2d.mlir"
"gather_like_ops.mlir"
"index.mlir"
"narrow_n_matmuls.mlir"
"pack.mlir"
"pack_dynamic_inner_tiles.mlir"
Expand Down Expand Up @@ -89,8 +91,10 @@ iree_check_single_backend_test_suite(
NAME
check_vulkan-spirv_vulkan
SRCS
"argmax.mlir"
"conv2d.mlir"
"gather_like_ops.mlir"
"index.mlir"
"narrow_n_matmuls.mlir"
"softmax.mlir"
"subbyte_to_fp.mlir"
Expand Down Expand Up @@ -156,9 +160,15 @@ iree_check_single_backend_test_suite(
check_rocm_hip
SRCS
"argmax.mlir"
"conv2d.mlir"
"fp4_f32_conversion.mlir"
"fp_to_subbyte.mlir"
"gather_like_ops.mlir"
"index.mlir"
"narrow_n_matmuls.mlir"
"pack_i8.mlir"
"softmax.mlir"
"subbyte_to_fp.mlir"
"unpack.mlir"
TARGET_BACKEND
"rocm"
Expand Down
8 changes: 4 additions & 4 deletions tests/e2e/linalg_ext_ops/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ VMVX_SRCS = enforce_glob(
# keep sorted
[
"arg_compare.mlir",
"attention.mlir",
"gather.mlir",
"map_gather.mlir",
"map_scatter.mlir",
Expand All @@ -81,7 +82,6 @@ VMVX_SRCS = enforce_glob(
],
include = ["*.mlir"],
exclude = [
"attention.mlir",
"attention_i1_mask.mlir",
"attention_i1_mask_encoding.mlir",
],
Expand Down Expand Up @@ -195,9 +195,12 @@ iree_check_single_backend_test_suite(
[
"arg_compare.mlir",
"gather.mlir",
"map_gather.mlir",
"map_scatter.mlir",
"scan.mlir",
"scatter.mlir",
"sort.mlir",
"top-k.mlir",
"winograd_input.mlir",
"winograd_output.mlir",
],
Expand All @@ -206,9 +209,6 @@ iree_check_single_backend_test_suite(
"attention.mlir",
"attention_i1_mask.mlir",
"attention_i1_mask_encoding.mlir",
"map_gather.mlir",
"map_scatter.mlir",
"top-k.mlir",
],
),
driver = "vulkan",
Expand Down
4 changes: 4 additions & 0 deletions tests/e2e/linalg_ext_ops/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ iree_check_single_backend_test_suite(
check_vmvx_local-task
SRCS
"arg_compare.mlir"
"attention.mlir"
"gather.mlir"
"map_gather.mlir"
"map_scatter.mlir"
Expand Down Expand Up @@ -138,9 +139,12 @@ iree_check_single_backend_test_suite(
SRCS
"arg_compare.mlir"
"gather.mlir"
"map_gather.mlir"
"map_scatter.mlir"
"scan.mlir"
"scatter.mlir"
"sort.mlir"
"top-k.mlir"
"winograd_input.mlir"
"winograd_output.mlir"
TARGET_BACKEND
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/stablehlo_ops/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ iree_check_single_backend_test_suite(
"reduce_window.mlir",
"remainder.mlir",
"reshape.mlir",
"reverse.mlir",
"rng_normal.mlir",
"rng_uniform.mlir",
"round.mlir",
Expand All @@ -264,7 +265,6 @@ iree_check_single_backend_test_suite(
exclude = [
"exponential_fp16.mlir",
"fft.mlir", # TODO(#9583)
"reverse.mlir", # TODO(#12415): disabled due to miscompilation on Pixel 6.
],
),
compiler_flags = [
Expand Down
1 change: 1 addition & 0 deletions tests/e2e/stablehlo_ops/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ iree_check_single_backend_test_suite(
"reduce_window.mlir"
"remainder.mlir"
"reshape.mlir"
"reverse.mlir"
"rng_normal.mlir"
"rng_uniform.mlir"
"round.mlir"
Expand Down
Loading