From 6ca34c6a530d9f96d4ffd0116bedee4baba58166 Mon Sep 17 00:00:00 2001 From: Erick Ochoa Date: Fri, 16 Jan 2026 08:38:22 -0500 Subject: [PATCH 1/3] [CI] Update torch config --- .../torch_ops_gpu_hip_gfx1201_O3.json | 23 ++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/tests/external/iree-test-suites/torch_ops/torch_ops_gpu_hip_gfx1201_O3.json b/tests/external/iree-test-suites/torch_ops/torch_ops_gpu_hip_gfx1201_O3.json index a1dd3b1519cf..baebf6555755 100644 --- a/tests/external/iree-test-suites/torch_ops/torch_ops_gpu_hip_gfx1201_O3.json +++ b/tests/external/iree-test-suites/torch_ops/torch_ops_gpu_hip_gfx1201_O3.json @@ -8,12 +8,29 @@ "iree_run_module_flags": [ "--device=hip" ], - "skip_compile_tests": [], + "skip_compile_tests": [ + "InterestingShapesBiasAdd/997x997xi8_NN_bias" + ], "skip_run_tests": [ "ABPlusC/64x64xf16", - "ATB/64x64xf16" + "ATB/64x64xf16", + "AB/1024x1024xf32_bench", + "AB/128x128xf32_bench", + "AB/2048x2048xf32_bench", + "AB/256x256xf32_bench", + "AB/4096x4096xf32_bench", + "AB/512x512xf32_bench", + "AB/8192x8192xf32_bench" ], "expected_compile_failures": [], "expected_run_failures": [], - "golden_times_ms": {} + "golden_times_ms": { + "AB/1024x1024xf32_bench" : 0.0, + "AB/128x128xf32_bench" : 0.0, + "AB/2048x2048xf32_bench" : 0.0, + "AB/256x256xf32_bench" : 0.0, + "AB/4096x4096xf32_bench" : 0.0, + "AB/512x512xf32_bench" : 0.0, + "AB/8192x8192xf32_bench" : 0.0 + } } From 7ff1c9c507bbb0a388b947952168a6d6203a710e Mon Sep 17 00:00:00 2001 From: Erick Ochoa Date: Fri, 16 Jan 2026 08:41:27 -0500 Subject: [PATCH 2/3] [CI] Run torch, onnx or sharktank actions when changing configuration files --- build_tools/github_actions/configure_ci.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build_tools/github_actions/configure_ci.py b/build_tools/github_actions/configure_ci.py index 86978ce4fcd0..accad2816b72 100755 --- a/build_tools/github_actions/configure_ci.py +++ b/build_tools/github_actions/configure_ci.py @@ -191,6 +191,18 @@ def contains(cls, val): ".github/worklflows/ci_windows_x64_msvc.yml", ], ), + ( + "test_torch", + ["tests/external/iree-test-suites/torch*"], + ), + ( + "test_onnx", + ["tests/external/iree-test-suites/onnx*"], + ), + ( + "test_sharktank", + ["tests/external/iree-test-suites/sharktank*"], + ), ] PR_DESCRIPTION_TEMPLATE = string.Template("${title}\n\n${body}") From 1490bff2d20dfd5671dcd6e3aa2af4b857870c35 Mon Sep 17 00:00:00 2001 From: Erick Ochoa Date: Fri, 16 Jan 2026 08:52:01 -0500 Subject: [PATCH 3/3] Modified rules for presubmit_touch_only jobs --- build_tools/github_actions/configure_ci.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build_tools/github_actions/configure_ci.py b/build_tools/github_actions/configure_ci.py index accad2816b72..7a62b1d633c5 100755 --- a/build_tools/github_actions/configure_ci.py +++ b/build_tools/github_actions/configure_ci.py @@ -195,14 +195,6 @@ def contains(cls, val): "test_torch", ["tests/external/iree-test-suites/torch*"], ), - ( - "test_onnx", - ["tests/external/iree-test-suites/onnx*"], - ), - ( - "test_sharktank", - ["tests/external/iree-test-suites/sharktank*"], - ), ] PR_DESCRIPTION_TEMPLATE = string.Template("${title}\n\n${body}")