analytical-viz: reorder tabs — Physical layout back to first

New tab order:
  Physical layout / Auto Suggest Parallelism / Memory breakdown /
  Per-stage latency / Save & compare / Auto Hardware

Physical layout is what a user typically wants to see first when
loading the app, so it takes the leftmost slot again. Auto Suggest
Parallelism moves to second — still prominent, still usable as a
first step, but doesn't push the layout view behind it.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-07-28 14:26:07 -07:00
parent 9afeb6bc16
commit c2b42999d8
+3 -2
View File
@@ -497,9 +497,10 @@ if _warnings:
# Attn + FFN/MoE) so the user can toggle scope without switching tabs.
# Auto Suggest is renamed "Parallelism" since it only varies parallelism
# knobs (hardware is held fixed at the sidebar values).
tab_auto, tab_layout, tab_memory, tab_stages, tab_compare, tab_hw = st.tabs([
tab_layout, tab_auto, tab_memory, tab_stages, tab_compare, tab_hw = st.tabs([
"Physical layout",
"Auto Suggest Parallelism",
"Physical layout", "Memory breakdown", "Per-stage latency",
"Memory breakdown", "Per-stage latency",
"Save & compare", "Auto Hardware",
])