From d16e30ed777040c3a320dd6b1d33b330f597e8e6 Mon Sep 17 00:00:00 2001 From: ethanwee1 Date: Thu, 18 Jun 2026 14:21:34 +0000 Subject: [PATCH 1/2] parity summary: exclude inductor.test_cpu_repro from comparison test_cpu_repro is blocklisted on ROCm upstream, so it never runs there. The parity summary was therefore counting it as MISSED against the CUDA baseline, which is misleading. Add it to EXCLUDED_TEST_SUITES so it is dropped from the ROCm-vs-CUDA comparison. --- .../pytorch-unit-test-scripts/summarize_xml_testreports.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.automation_scripts/pytorch-unit-test-scripts/summarize_xml_testreports.py b/.automation_scripts/pytorch-unit-test-scripts/summarize_xml_testreports.py index 97c4424d89b03..a58e12355b07e 100755 --- a/.automation_scripts/pytorch-unit-test-scripts/summarize_xml_testreports.py +++ b/.automation_scripts/pytorch-unit-test-scripts/summarize_xml_testreports.py @@ -31,7 +31,10 @@ "_nvfuser.test_torchscript", "test_jit_cuda_fuser", "test_nvfuser_dynamo", - "test_nvfuser_frontend" + "test_nvfuser_frontend", + # Blocklisted on ROCm upstream, so it never runs there and would otherwise + # show up as falsely MISSED against the CUDA baseline. + "inductor.test_cpu_repro" ] From 55b6db93345e1e416eb17cc192bb459543c2b81b Mon Sep 17 00:00:00 2001 From: Jithun Nair <37884920+jithunnair-amd@users.noreply.github.com> Date: Wed, 24 Jun 2026 01:06:34 -0500 Subject: [PATCH 2/2] Update summarize_xml_testreports.py --- .../pytorch-unit-test-scripts/summarize_xml_testreports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.automation_scripts/pytorch-unit-test-scripts/summarize_xml_testreports.py b/.automation_scripts/pytorch-unit-test-scripts/summarize_xml_testreports.py index a58e12355b07e..4349a90f21f80 100755 --- a/.automation_scripts/pytorch-unit-test-scripts/summarize_xml_testreports.py +++ b/.automation_scripts/pytorch-unit-test-scripts/summarize_xml_testreports.py @@ -29,11 +29,11 @@ "_nvfuser.test_dynamo", "_nvfuser.test_python_frontend", "_nvfuser.test_torchscript", - "test_jit_cuda_fuser", "test_nvfuser_dynamo", "test_nvfuser_frontend", # Blocklisted on ROCm upstream, so it never runs there and would otherwise # show up as falsely MISSED against the CUDA baseline. + "test_jit_cuda_fuser", "inductor.test_cpu_repro" ]