From e48eabbeee4ab3a31327114267728f565d75102b Mon Sep 17 00:00:00 2001 From: Alison Shao <54658187+alisonshao@users.noreply.github.com> Date: Fri, 17 Jul 2026 17:32:20 -0700 Subject: [PATCH] ci: add MLX to coverage report backend display order (#31442) --- scripts/ci/utils/ci_coverage_report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/utils/ci_coverage_report.py b/scripts/ci/utils/ci_coverage_report.py index 0cc7f0a06..e8a467ad8 100755 --- a/scripts/ci/utils/ci_coverage_report.py +++ b/scripts/ci/utils/ci_coverage_report.py @@ -32,8 +32,8 @@ from ci_register import CIRegistry, HWBackend, ut_parse_one_file # the report -- if the assert below fires, add the new backend name here in # the right display slot. Order isn't alphabetical: CUDA/AMD/NPU/CPU lead # (highest test volume historically), then accelerators that have been -# wired into the registry more recently (XPU, MUSA). -BACKEND_DISPLAY_ORDER = ("CUDA", "AMD", "NPU", "CPU", "XPU", "MUSA") +# wired into the registry more recently (XPU, MUSA, MLX). +BACKEND_DISPLAY_ORDER = ("CUDA", "AMD", "NPU", "CPU", "XPU", "MUSA", "MLX") assert set(BACKEND_DISPLAY_ORDER) == { b.name for b in HWBackend }, "BACKEND_DISPLAY_ORDER is out of sync with HWBackend"