ci: add CI performance dashboard at /ci-dashboard#675
Conversation
FlyDSL's per-PR benchmarks run on three GPU runners (gfx950/gfx942/gfx1201) and already compute current-vs-main and current-vs-tag regressions -- but the numbers only ever land in job logs. This adds a static dashboard that surfaces them: live CI status of today's PRs, per-kernel regressions, performance trends across commits, and a local gfx950 cross-check. It rides the existing docs Pages deploy -- docs.yml copies ci-dashboard/ into the published artifact -- so it lands at rocm.github.io/FlyDSL/ci-dashboard with no Pages-setting change. A scheduled workflow parses recent "Fly DSL test" job logs and publishes history.json/runs.json to the orphan ci-dashboard-data branch, which the page fetches at runtime; the live board also reads the public Actions API (with the snapshot as a fallback). - ci-dashboard/: static SPA (vanilla JS + vendored Chart.js), stdlib-only parser/ingest with a unit test, seed data, schema doc, README - .github/workflows/ci-dashboard-ingest.yml: cron + post-run ingestion - scripts/ci_dashboard_local.sh: local MI350X cross-check runner - docs.yml / docs/index.rst: bundle the page into Pages and link it Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds a static “CI Performance Dashboard” to the repo (served with docs) plus ingestion/parsing tooling to publish benchmark history and live run status to a dedicated data branch.
Changes:
- Introduces a new
ci-dashboard/static web app (HTML/CSS/JS) with CI board, regressions, trends, and local cross-check views. - Adds stdlib-only benchmark log parsing (
parse_bench.py) + GitHub Actions log ingestion (ingest.py) and a scheduled workflow to publishhistory.json/runs.jsontoci-dashboard-data. - Adds a local helper script to generate/push
local.json, and links the dashboard from docs.
Reviewed changes
Copilot reviewed 13 out of 15 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| scripts/ci_dashboard_local.sh | Runs local benchmarks, parses into local.json, optionally pushes to ci-dashboard-data. |
| docs/index.rst | Adds a docs note linking to the dashboard. |
| ci-dashboard/styles.css | Adds dashboard styling. |
| ci-dashboard/ingest/test_parse_bench.py | Adds pure-Python tests for the benchmark parser. |
| ci-dashboard/ingest/parse_bench.py | Adds parser for benchmark tables + comparison blocks + AIter sweep. |
| ci-dashboard/ingest/ingest.py | Adds ingestion via gh CLI to build history.json and runs.json. |
| ci-dashboard/index.html | Adds the static dashboard page structure and UI elements. |
| ci-dashboard/data/schema.md | Documents the JSON data schema consumed by the dashboard. |
| ci-dashboard/data/runs.json | Seeds the dashboard with a bundled runs.json snapshot. |
| ci-dashboard/app.js | Implements data loading, rendering, and “live” overlay via GitHub API. |
| ci-dashboard/README.md | Documents dashboard architecture, local dev, and configuration. |
| .github/workflows/docs.yml | Bundles ci-dashboard/ into the docs Pages artifact. |
| .github/workflows/ci-dashboard-ingest.yml | Adds scheduled / triggered job to regenerate and publish dashboard data. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- parse_bench: accept main~N fallback baseline labels (flydsl.yaml walks back when main won't build) and treat them as vs_main, not vs_tag; +unit test. - ingest: resolve the PR number via head owner:branch when workflow_runs[].pull_requests is empty (common for fork PRs), so runs link to #<pr> instead of a branch name. - ci_dashboard_local.sh: derive --source from --arch (no gfx942/local-gfx950 mismatch); write records to a per-run temp file. - app.js: regression badge follows the selected baseline; board groups per branch-commit (not per run_id); local cross-check matches CI by arch. - index.html: proper tab/tabpanel ARIA (aria-selected / -controls / -labelledby). - docs.yml: copy the dashboard into a fresh dir so re-runs can't nest it. - tests: make the parser importable under pytest; fix an AIter-sweep docstring.
|
All points before addressed in Correctness (your two catches)
Copilot
|
Reworks the dashboard around the question a maintainer actually opens it for — "did main regress, which kernel, how much" — instead of a PR-status wall. - Landing is now **Health**: a single count of *real* regressions on main + the regressing kernels with a sparkline each. "Real" = a drop beyond the kernel's run-to-run noise (mean ± Kσ over main runs) or the −3% gate when samples are sparse; a noise-aware toggle exposes the model. - New **PR Check** view: pick a PR → does its latest run slow any kernel vs main (the merge-gating question). Uses the pr + vs_main already in the data. - **Trends** gains the noise band + baseline mean line (single-arch) and red points only outside the band; status-aware table (skip / miss / —). - **CI Board** demoted to the last tab and each card now shows its worst Δ vs main. - Theme: removed scanlines/grain/glow, confident type scale (Sora display), semantic color only on data, brand teal limited to nav/links. - Removed the Local gfx950 tab and its helper script per request. - parse_bench: surface which main the baseline was (vs_main.label). - README: add a CI Performance Dashboard banner + badges entry (ATOM-style).
The runner→gfx mapping was right; the human labels weren't. Per CLAUDE.md + the runner names: gfx950 box is mi355 (MI355X, not "MI350X"), gfx942 is mi325 (MI325X), gfx1201 is the navi RDNA4 card (R9700, not "Navi4"). Fix the legend and the README banner.
Refines the look without touching the (liked) information architecture or the constraints: no textures/glow, semantic color only on data, brand teal on nav only, Sora display + Plex Mono numbers. - Layered surfaces + soft shadows for depth (panels/cards/hero now read raised). - Hero: status glyph, divider-separated stat blocks, accent rail, top hairline. - Regression rows: per-row severity rail, delta-magnitude bars, staggered reveal. - Sparklines: gradient area fill, crisper line + endpoint. - Tabs: inline SVG icons; refined active underline; FlyDSL wordmark accent. - Trends: subtle area fill (single-arch), info glyph on the noise note. - Tables: refined headers/spacing/hover; tasteful syncing loading indicator.
Two review fixes (both correctness): 1. Health/Trends no longer trust a main run's own vs_main. On push-to-main, flydsl.yaml rebuilds origin/main in the same job, so a main run's vs_main is current-vs-itself (re-run variance), not a historical "did main regress". The dashboard now compares the latest main value against PRIOR main history (excluding the current run) and only *confirms* a regression when there is enough prior history to size the noise band (>=3 prior runs); thinner drops past the gate are surfaced as "to check", not counted as confirmed. PR runs keep using vs_main, which is a real PR-commit-vs-main-commit diff. Shared via mainBaseline()/regOf(), used by Health, Trends (band + point colors + table), the kernel rail, PR Check, and the board (board shows worst-Δ only for PRs). 2. The live board reused no PR fallback, so the newest fork-PR runs (empty pull_requests) showed as branch cards. enhanceLiveBoard() now carries the PR the ingest snapshot already resolved for that head branch.
| The live CI board uses the **unauthenticated** public Actions API (60 requests/hour | ||
| per IP). That is ample for the default 90 s refresh and the ≤6 requests per load; if | ||
| the limit is hit the board degrades gracefully to the last `runs.json` snapshot. The | ||
| benchmark numbers never depend on the live API — they come from the data branch. |
There was a problem hiding this comment.
git diff --check upstream/main...HEAD reports this as ci-dashboard/README.md:68: new blank line at EOF. Please drop the extra blank line after the final paragraph so the PR diff is whitespace-clean.
- Trends: time-range selector (10d/30d/all), by-commit vs by-day (daily mean) toggle, a two-line date+commit x-axis, and click-a-point-to-open-the-commit. Default kernel is the best-sampled one so the chart isn't a lone point. - Commit links everywhere a SHA appears (Health rows, Trends table, Board), plus PR links in the Trends table. - Global light/dark theme: toggle in the top bar (persisted + prefers-color-scheme), full :root[data-theme=light] palette, and theme-aware canvas/SVG colors read live from CSS vars (cssVal/archCol). Theme-sensitive accents use color-mix so they adapt; removed dead .skel/CFG.archColor; hardened the range parse and PR-link guard.
- ingest list_runs() now paginates past 100 runs so a deeper scan can backfill ~10 days (≈12 runs/day). Workflow default max-runs 40→120, retention 90→14d so the data branch carries ~10 days instead of ~3; README example updated. - Theme: topbar/hero-rail/chip/row-bad accents use color-mix(var(--…)) so they adapt to light mode instead of staying dark-tinted; removed dead .skel and the unused CFG.archColor; hardened the range parse and the Trends PR-link guard.
The range options were 10d/30d/all, but data retention is 14 days and ~10 days exist — so 10d, 30d and all all resolved to the same window (30d can never differ from a 14-day retention). Replaced with 3d / 7d / all(14d), which genuinely subset the data (e.g. 17 / 44 / 75 commits), and defaulted to "all". Also made the x-modes visually distinct: "by day" draws ~10 prominent daily-mean markers; "by commit" draws a thin dense line, so the toggle is obviously doing something.
|
@coderfeli this looks solid now — I think it's ready for a review and merge. One thing I'd like your eyes on, and that we can only fully validate after merge: the auto‑refresh. The dashboard's data is kept current by
Because
Default Live preview meanwhile: https://jhinpan.github.io/FlyDSL-lab/ |
| @@ -0,0 +1 @@ | |||
| {"schema":1,"updated":"2026-06-11T08:21:00Z","repo":"ROCm/FlyDSL","records":[{"op":"fp8_gemm","shape":"128x4096x4096","dtype":"fp8","metric":"speedup","value":1.23,"status":"ok","regression":false,"extra":{"flydsl_us":68.7,"aiter_us":55.7,"baseline":"aiter"},"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x4096x4096","dtype":"fp8","metric":"speedup","value":2.27,"status":"ok","regression":false,"extra":{"flydsl_us":68.9,"aiter_us":30.4,"baseline":"aiter"},"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x8192x8192","dtype":"fp8","metric":"speedup","value":0.43,"status":"ok","regression":false,"extra":{"flydsl_us":70.7,"aiter_us":165.9,"baseline":"aiter"},"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"4096x4096x4096","dtype":"fp8","metric":"speedup","value":0.87,"status":"ok","regression":false,"extra":{"flydsl_us":735.7,"aiter_us":842.0,"baseline":"aiter"},"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.51,"status":"ok","vs_main":{"label":"main","baseline":0.51,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":0.467,"ratio":1.092,"delta_pct":9.2},"regression":false,"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.507,"status":"ok","vs_main":{"label":"main","baseline":0.507,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":0.507,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.506,"status":"ok","vs_main":{"label":"main","baseline":0.506,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":0.49,"ratio":1.033,"delta_pct":3.3},"regression":false,"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"1024x1024x1024","dtype":"bf16","metric":"speedup","value":1.93,"status":"ok","regression":false,"extra":{"flydsl_us":52.1,"aiter_us":26.9,"baseline":"aiter"},"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"2048x2048x2048","dtype":"bf16","metric":"speedup","value":1.04,"status":"ok","regression":false,"extra":{"flydsl_us":151.1,"aiter_us":145.7,"baseline":"aiter"},"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"256x256x256","dtype":"bf16","metric":"speedup","value":6.5,"status":"ok","regression":false,"extra":{"flydsl_us":49.4,"aiter_us":7.6,"baseline":"aiter"},"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"4096x4096x4096","dtype":"bf16","metric":"speedup","value":1.13,"status":"ok","regression":false,"extra":{"flydsl_us":1263.7,"aiter_us":1114.3,"baseline":"aiter"},"ts":"2026-06-10T08:31:16Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"flash_attn","shape":"B16S8192H16Hkv16D128_causal","dtype":"bf16","metric":"TFLOPS","value":1172.1,"status":"ok","vs_main":{"label":"main","baseline":1172.9,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B32S8192H8Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":1139.1,"status":"ok","vs_main":{"label":"main","baseline":1139.4,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B4S8192H64Hkv64D128_causal","dtype":"bf16","metric":"TFLOPS","value":1160.2,"status":"ok","vs_main":{"label":"main","baseline":1160.9,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B4S8192H64Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":1162.4,"status":"ok","vs_main":{"label":"main","baseline":1164.0,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"fp8_8wave_rowscale","shape":"5120x5120x8320_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","value":2427.68,"status":"ok","vs_main":{"label":"main","baseline":2438.97,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":2401.56,"ratio":1.011,"delta_pct":1.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"fp8_8wave_rowscale","shape":"8192x8192x8192_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","value":3082.59,"status":"ok","vs_main":{"label":"main","baseline":3110.75,"ratio":0.991,"delta_pct":-0.9},"vs_tag":{"tag":"v0.2.0","baseline":3098.22,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"16x40960x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":154.77,"status":"ok","vs_main":{"label":"main","baseline":154.24,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":154.22,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"16x77824x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":170.7,"status":"ok","vs_main":{"label":"main","baseline":172.51,"ratio":0.99,"delta_pct":-1.0},"vs_tag":{"tag":"v0.2.0","baseline":172.54,"ratio":0.989,"delta_pct":-1.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"256x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":331.82,"status":"ok","vs_main":{"label":"main","baseline":329.83,"ratio":1.006,"delta_pct":0.6},"vs_tag":{"tag":"v0.2.0","baseline":333.17,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1803.54,"status":"ok","vs_main":{"label":"main","baseline":1812.29,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":1806.56,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"bf16","metric":"TFLOPS","value":923.19,"status":"ok","vs_main":{"label":"main","baseline":924.25,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":925.93,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"512x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":521.09,"status":"ok","vs_main":{"label":"main","baseline":525.46,"ratio":0.992,"delta_pct":-0.8},"vs_tag":{"tag":"v0.2.0","baseline":529.45,"ratio":0.984,"delta_pct":-1.6},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp8","metric":"TFLOPS","value":1856.67,"status":"ok","vs_main":{"label":"main","baseline":1857.21,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":1857.06,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp4","metric":"TFLOPS","value":4071.62,"status":"ok","vs_main":{"label":"main","baseline":4063.75,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":4067.42,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x256","dtype":"fp4","metric":"TFLOPS","value":3343.06,"status":"ok","vs_main":{"label":"main","baseline":3350.02,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":3350.05,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile64x128x256","dtype":"fp4","metric":"TFLOPS","value":2983.32,"status":"ok","vs_main":{"label":"main","baseline":2973.09,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":2986.12,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile64x256x256","dtype":"fp4","metric":"TFLOPS","value":3362.17,"status":"ok","vs_main":{"label":"main","baseline":3370.19,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":3362.75,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":2019.49,"status":"ok","vs_main":{"label":"main","baseline":2021.13,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":2018.65,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int8","metric":"TFLOPS","value":1662.12,"status":"ok","vs_main":{"label":"main","baseline":1666.94,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":1662.05,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int4","metric":"TFLOPS","value":1630.64,"status":"ok","vs_main":{"label":"main","baseline":1637.97,"ratio":0.996,"delta_pct":-0.4},"vs_tag":{"tag":"v0.2.0","baseline":1632.24,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"256x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":358.46,"status":"ok","vs_main":{"label":"main","baseline":360.38,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":357.88,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"5120x5120x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":2306.23,"status":"ok","vs_main":{"label":"main","baseline":2263.51,"ratio":1.019,"delta_pct":1.9},"vs_tag":{"tag":"v0.2.0","baseline":2299.38,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"512x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":524.32,"status":"ok","vs_main":{"label":"main","baseline":517.07,"ratio":1.014,"delta_pct":1.4},"vs_tag":{"tag":"v0.2.0","baseline":520.79,"ratio":1.007,"delta_pct":0.7},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":2667.68,"status":"ok","vs_main":{"label":"main","baseline":2658.1,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":2666.59,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":2659.89,"status":"ok","vs_main":{"label":"main","baseline":2655.98,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":2654.94,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"int8","metric":"TFLOPS","value":1206.47,"status":"ok","vs_main":{"label":"main","baseline":1209.66,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":1210.31,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp4","metric":"TFLOPS","value":4169.11,"status":"ok","vs_main":{"label":"main","baseline":4190.76,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":4156.95,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x256_2tg","dtype":"fp4","metric":"TFLOPS","value":3637.67,"status":"ok","vs_main":{"label":"main","baseline":3640.71,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":3638.64,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"hgemm","shape":"2048x2048x2048_tile128x128x64_sk1","dtype":"fp16","metric":"TFLOPS","value":711.81,"status":"ok","vs_main":{"label":"main","baseline":681.69,"ratio":1.044,"delta_pct":4.4},"vs_tag":{"tag":"v0.2.0","baseline":729.53,"ratio":0.976,"delta_pct":-2.4},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"hgemm","shape":"32x384x7168_tile32x64x64_sk16","dtype":"bf16","metric":"TFLOPS","value":28.17,"status":"ok","vs_main":{"label":"main","baseline":27.8,"ratio":1.013,"delta_pct":1.3},"vs_tag":{"tag":"v0.2.0","baseline":27.06,"ratio":1.041,"delta_pct":4.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":5.537,"status":"ok","vs_main":{"label":"main","baseline":5.698,"ratio":0.972,"delta_pct":-2.8},"vs_tag":{"tag":"v0.2.0","baseline":1.673,"ratio":3.31,"delta_pct":231.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"mla","shape":"B32C8192","dtype":"fp8","metric":"TFLOPS","value":986.26,"status":"ok","vs_main":{"label":"main","baseline":988.56,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":990.18,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":597.73,"status":"ok","vs_main":{"label":"main","baseline":632.09,"ratio":0.946,"delta_pct":-5.4},"vs_tag":{"tag":"v0.2.0","baseline":585.88,"ratio":1.02,"delta_pct":2.0},"regression":true,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":969.44,"status":"ok","vs_main":{"label":"main","baseline":968.35,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":964.29,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":1362.03,"status":"ok","vs_main":{"label":"main","baseline":1362.68,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":1359.79,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":331.18,"status":"ok","vs_main":{"label":"main","baseline":342.44,"ratio":0.967,"delta_pct":-3.3},"vs_tag":{"tag":"v0.2.0","baseline":323.29,"ratio":1.024,"delta_pct":2.4},"regression":true,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":1627.7,"status":"ok","vs_main":{"label":"main","baseline":1626.71,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":1625.0,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":374.08,"status":"ok","vs_main":{"label":"main","baseline":375.56,"ratio":0.996,"delta_pct":-0.4},"vs_tag":{"tag":"v0.2.0","baseline":372.14,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":543.5,"status":"ok","vs_main":{"label":"main","baseline":549.22,"ratio":0.99,"delta_pct":-1.0},"vs_tag":{"tag":"v0.2.0","baseline":545.75,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":600.55,"status":"ok","vs_main":{"label":"main","baseline":594.11,"ratio":1.011,"delta_pct":1.1},"vs_tag":{"tag":"v0.2.0","baseline":585.52,"ratio":1.026,"delta_pct":2.6},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":327.05,"status":"ok","vs_main":{"label":"main","baseline":330.19,"ratio":0.99,"delta_pct":-1.0},"vs_tag":{"tag":"v0.2.0","baseline":324.91,"ratio":1.007,"delta_pct":0.7},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":636.51,"status":"ok","vs_main":{"label":"main","baseline":638.09,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":637.54,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":351.93,"status":"ok","vs_main":{"label":"main","baseline":351.13,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":350.23,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":511.72,"status":"ok","vs_main":{"label":"main","baseline":512.81,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":505.23,"ratio":1.013,"delta_pct":1.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":565.14,"status":"ok","vs_main":{"label":"main","baseline":566.34,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":544.46,"ratio":1.038,"delta_pct":3.8},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":304.48,"status":"ok","vs_main":{"label":"main","baseline":297.94,"ratio":1.022,"delta_pct":2.2},"vs_tag":{"tag":"v0.2.0","baseline":293.39,"ratio":1.038,"delta_pct":3.8},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":612.49,"status":"ok","vs_main":{"label":"main","baseline":612.11,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":595.08,"ratio":1.029,"delta_pct":2.9},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":627.59,"status":"ok","vs_main":{"label":"main","baseline":626.55,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":618.77,"ratio":1.014,"delta_pct":1.4},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":89.24,"status":"ok","vs_main":{"label":"main","baseline":89.22,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":88.19,"ratio":1.012,"delta_pct":1.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":81.09,"status":"ok","vs_main":{"label":"main","baseline":81.09,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":79.68,"ratio":1.018,"delta_pct":1.8},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":15.88,"status":"ok","vs_main":{"label":"main","baseline":15.79,"ratio":1.006,"delta_pct":0.6},"vs_tag":{"tag":"v0.2.0","baseline":15.38,"ratio":1.033,"delta_pct":3.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":1712.82,"status":"ok","vs_main":{"label":"main","baseline":1713.31,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":1712.24,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":2401.46,"status":"ok","vs_main":{"label":"main","baseline":2397.93,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":2399.3,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":935.71,"status":"ok","vs_main":{"label":"main","baseline":935.89,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":919.12,"ratio":1.018,"delta_pct":1.8},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":3102.91,"status":"ok","vs_main":{"label":"main","baseline":3104.96,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":3108.33,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":2292.54,"status":"ok","vs_main":{"label":"main","baseline":2294.49,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":2286.57,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":2585.49,"status":"ok","vs_main":{"label":"main","baseline":2586.2,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":2581.02,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":482.15,"status":"ok","vs_main":{"label":"main","baseline":481.9,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":485.51,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":70.76,"status":"ok","vs_main":{"label":"main","baseline":69.92,"ratio":1.012,"delta_pct":1.2},"vs_tag":{"tag":"v0.2.0","baseline":69.79,"ratio":1.014,"delta_pct":1.4},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":65.55,"status":"ok","vs_main":{"label":"main","baseline":65.56,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":65.35,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":20.04,"status":"ok","vs_main":{"label":"main","baseline":16.73,"ratio":1.198,"delta_pct":19.8},"vs_tag":{"tag":"v0.2.0","baseline":20.09,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":333.5,"status":"ok","vs_main":{"label":"main","baseline":333.89,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":333.53,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1216.93,"status":"ok","vs_main":{"label":"main","baseline":1216.93,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":1212.92,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":312.01,"status":"ok","vs_main":{"label":"main","baseline":308.5,"ratio":1.011,"delta_pct":1.1},"vs_tag":{"tag":"v0.2.0","baseline":311.16,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1866.87,"status":"ok","vs_main":{"label":"main","baseline":1870.69,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":1865.58,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":333.83,"status":"ok","vs_main":{"label":"main","baseline":333.71,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":333.41,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1644.86,"status":"ok","vs_main":{"label":"main","baseline":1647.28,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":1641.59,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":443.17,"status":"ok","vs_main":{"label":"main","baseline":442.02,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":442.13,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":62.39,"status":"ok","vs_main":{"label":"main","baseline":62.0,"ratio":1.006,"delta_pct":0.6},"vs_tag":{"tag":"v0.2.0","baseline":60.75,"ratio":1.027,"delta_pct":2.7},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":59.99,"status":"ok","vs_main":{"label":"main","baseline":60.08,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":60.39,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":15.51,"status":"ok","vs_main":{"label":"main","baseline":15.53,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":15.27,"ratio":1.016,"delta_pct":1.6},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":454.07,"status":"ok","vs_main":{"label":"main","baseline":454.35,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":449.52,"ratio":1.01,"delta_pct":1.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1096.86,"status":"ok","vs_main":{"label":"main","baseline":1097.79,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":1060.17,"ratio":1.035,"delta_pct":3.5},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":358.51,"status":"ok","vs_main":{"label":"main","baseline":358.42,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":344.7,"ratio":1.04,"delta_pct":4.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1491.38,"status":"ok","vs_main":{"label":"main","baseline":1492.29,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":1458.61,"ratio":1.022,"delta_pct":2.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":513.86,"status":"ok","vs_main":{"label":"main","baseline":514.22,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":483.03,"ratio":1.064,"delta_pct":6.4},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1295.12,"status":"ok","vs_main":{"label":"main","baseline":1293.64,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":1291.48,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm1","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1204.53,"status":"ok","vs_main":{"label":"main","baseline":1214.23,"ratio":0.992,"delta_pct":-0.8},"vs_tag":{"tag":"v0.2.0","baseline":1201.15,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm1","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":47.81,"status":"ok","vs_main":{"label":"main","baseline":47.8,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":47.72,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_atomic","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1329.91,"status":"ok","vs_main":{"label":"main","baseline":1324.15,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":1327.25,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_atomic","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":47.57,"status":"ok","vs_main":{"label":"main","baseline":47.78,"ratio":0.996,"delta_pct":-0.4},"vs_tag":{"tag":"v0.2.0","baseline":46.62,"ratio":1.02,"delta_pct":2.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_reduce","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1342.41,"status":"ok","vs_main":{"label":"main","baseline":1338.44,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":1340.01,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_reduce","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":44.77,"status":"ok","vs_main":{"label":"main","baseline":44.9,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":44.41,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s1","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":38.34,"status":"ok","vs_main":{"label":"main","baseline":38.2,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":38.05,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s1","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":74.93,"status":"ok","vs_main":{"label":"main","baseline":74.65,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":74.16,"ratio":1.01,"delta_pct":1.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s1","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":118.28,"status":"ok","vs_main":{"label":"main","baseline":118.42,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":117.61,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_atomic","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":36.73,"status":"ok","vs_main":{"label":"main","baseline":37.06,"ratio":0.991,"delta_pct":-0.9},"vs_tag":{"tag":"v0.2.0","baseline":36.13,"ratio":1.017,"delta_pct":1.7},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_atomic","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":68.23,"status":"ok","vs_main":{"label":"main","baseline":67.7,"ratio":1.008,"delta_pct":0.8},"vs_tag":{"tag":"v0.2.0","baseline":67.85,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_atomic","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":126.69,"status":"ok","vs_main":{"label":"main","baseline":125.85,"ratio":1.007,"delta_pct":0.7},"vs_tag":{"tag":"v0.2.0","baseline":126.1,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_reduce","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":36.42,"status":"ok","vs_main":{"label":"main","baseline":36.26,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":34.94,"ratio":1.042,"delta_pct":4.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_reduce","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":65.64,"status":"ok","vs_main":{"label":"main","baseline":63.99,"ratio":1.026,"delta_pct":2.6},"vs_tag":{"tag":"v0.2.0","baseline":63.11,"ratio":1.04,"delta_pct":4.0},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_reduce","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":116.75,"status":"ok","vs_main":{"label":"main","baseline":116.61,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":116.44,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":5.653,"status":"ok","vs_main":{"label":"main","baseline":5.815,"ratio":0.972,"delta_pct":-2.8},"vs_tag":{"tag":"v0.2.0","baseline":5.813,"ratio":0.972,"delta_pct":-2.8},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":5.516,"status":"ok","vs_main":{"label":"main","baseline":5.658,"ratio":0.975,"delta_pct":-2.5},"vs_tag":{"tag":"v0.2.0","baseline":5.755,"ratio":0.958,"delta_pct":-4.2},"regression":false,"ts":"2026-06-10T12:20:02Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B16S8192H16Hkv16D128_causal","dtype":"bf16","metric":"TFLOPS","value":274.4,"status":"ok","vs_main":{"label":"main","baseline":274.5,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B32S8192H8Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":277.3,"status":"ok","vs_main":{"label":"main","baseline":277.3,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B4S8192H64Hkv64D128_causal","dtype":"bf16","metric":"TFLOPS","value":348.8,"status":"ok","vs_main":{"label":"main","baseline":350.0,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B4S8192H64Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":351.9,"status":"ok","vs_main":{"label":"main","baseline":352.2,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"fp8_8wave_rowscale","shape":"5120x5120x8320_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"fp8_8wave_rowscale","shape":"8192x8192x8192_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"16x40960x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":120.03,"status":"ok","vs_main":{"label":"main","baseline":119.53,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":119.98,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"16x77824x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":137.17,"status":"ok","vs_main":{"label":"main","baseline":136.93,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":137.45,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"256x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":303.92,"status":"ok","vs_main":{"label":"main","baseline":306.79,"ratio":0.991,"delta_pct":-0.9},"vs_tag":{"tag":"v0.2.0","baseline":306.3,"ratio":0.992,"delta_pct":-0.8},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1352.81,"status":"ok","vs_main":{"label":"main","baseline":1368.12,"ratio":0.989,"delta_pct":-1.1},"vs_tag":{"tag":"v0.2.0","baseline":1363.62,"ratio":0.992,"delta_pct":-0.8},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"bf16","metric":"TFLOPS","value":685.71,"status":"ok","vs_main":{"label":"main","baseline":686.82,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":686.9,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"512x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":492.49,"status":"ok","vs_main":{"label":"main","baseline":490.23,"ratio":1.005,"delta_pct":0.5},"vs_tag":{"tag":"v0.2.0","baseline":493.23,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp8","metric":"TFLOPS","value":1417.03,"status":"ok","vs_main":{"label":"main","baseline":1429.02,"ratio":0.992,"delta_pct":-0.8},"vs_tag":{"tag":"v0.2.0","baseline":1433.48,"ratio":0.989,"delta_pct":-1.1},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile64x128x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile64x256x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1465.52,"status":"ok","vs_main":{"label":"main","baseline":1546.12,"ratio":0.948,"delta_pct":-5.2},"vs_tag":{"tag":"v0.2.0","baseline":1476.86,"ratio":0.992,"delta_pct":-0.8},"regression":true,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int8","metric":"TFLOPS","value":1465.62,"status":"ok","vs_main":{"label":"main","baseline":1473.99,"ratio":0.994,"delta_pct":-0.6},"vs_tag":{"tag":"v0.2.0","baseline":1458.32,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int4","metric":"TFLOPS","value":1337.47,"status":"ok","vs_main":{"label":"main","baseline":1337.39,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":1331.7,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"256x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":264.18,"status":"ok","vs_main":{"label":"main","baseline":267.62,"ratio":0.987,"delta_pct":-1.3},"vs_tag":{"tag":"v0.2.0","baseline":266.35,"ratio":0.992,"delta_pct":-0.8},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"5120x5120x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1182.32,"status":"ok","vs_main":{"label":"main","baseline":1198.73,"ratio":0.986,"delta_pct":-1.4},"vs_tag":{"tag":"v0.2.0","baseline":1187.7,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"512x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":438.67,"status":"ok","vs_main":{"label":"main","baseline":440.71,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":429.93,"ratio":1.02,"delta_pct":2.0},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1157.99,"status":"ok","vs_main":{"label":"main","baseline":1167.66,"ratio":0.992,"delta_pct":-0.8},"vs_tag":{"tag":"v0.2.0","baseline":1168.63,"ratio":0.991,"delta_pct":-0.9},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1391.67,"status":"ok","vs_main":{"label":"main","baseline":1404.97,"ratio":0.991,"delta_pct":-0.9},"vs_tag":{"tag":"v0.2.0","baseline":1394.93,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"int8","metric":"TFLOPS","value":1378.12,"status":"ok","vs_main":{"label":"main","baseline":1367.32,"ratio":1.008,"delta_pct":0.8},"vs_tag":{"tag":"v0.2.0","baseline":1377.44,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x256_2tg","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"hgemm","shape":"32x384x7168_tile16x64x128_sk14","dtype":"bf16","metric":"TFLOPS","value":19.71,"status":"ok","vs_main":{"label":"main","baseline":19.67,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":19.29,"ratio":1.022,"delta_pct":2.2},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"hgemm","shape":"4096x4096x4096_tile128x128x64_sk1","dtype":"fp16","metric":"TFLOPS","value":316.15,"status":"ok","vs_main":{"label":"main","baseline":322.58,"ratio":0.98,"delta_pct":-2.0},"vs_tag":{"tag":"v0.2.0","baseline":317.39,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":4.149,"status":"ok","vs_main":{"label":"main","baseline":4.196,"ratio":0.989,"delta_pct":-1.1},"vs_tag":{"tag":"v0.2.0","baseline":2.271,"ratio":1.827,"delta_pct":82.7},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"mla","shape":"B32C8192","dtype":"fp8","metric":"TFLOPS","value":714.95,"status":"ok","vs_main":{"label":"main","baseline":717.87,"ratio":0.996,"delta_pct":-0.4},"vs_tag":{"tag":"v0.2.0","baseline":716.83,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm1","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":642.9,"status":"ok","vs_main":{"label":"main","baseline":643.86,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":643.4,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm1","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":35.37,"status":"ok","vs_main":{"label":"main","baseline":35.47,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":35.24,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_atomic","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1081.18,"status":"ok","vs_main":{"label":"main","baseline":1074.31,"ratio":1.006,"delta_pct":0.6},"vs_tag":{"tag":"v0.2.0","baseline":1085.02,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_atomic","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":32.97,"status":"ok","vs_main":{"label":"main","baseline":33.07,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":33.19,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_reduce","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1024.58,"status":"ok","vs_main":{"label":"main","baseline":1021.64,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":1025.8,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_reduce","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":34.04,"status":"ok","vs_main":{"label":"main","baseline":34.05,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":33.98,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":27.9,"status":"ok","vs_main":{"label":"main","baseline":27.97,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":27.81,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":53.47,"status":"ok","vs_main":{"label":"main","baseline":53.48,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":53.38,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":103.98,"status":"ok","vs_main":{"label":"main","baseline":103.68,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":103.95,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":27.21,"status":"ok","vs_main":{"label":"main","baseline":26.52,"ratio":1.026,"delta_pct":2.6},"vs_tag":{"tag":"v0.2.0","baseline":26.66,"ratio":1.021,"delta_pct":2.1},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":48.85,"status":"ok","vs_main":{"label":"main","baseline":48.81,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":49.17,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":88.9,"status":"ok","vs_main":{"label":"main","baseline":89.45,"ratio":0.994,"delta_pct":-0.6},"vs_tag":{"tag":"v0.2.0","baseline":88.22,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":24.95,"status":"ok","vs_main":{"label":"main","baseline":25.47,"ratio":0.98,"delta_pct":-2.0},"vs_tag":{"tag":"v0.2.0","baseline":25.14,"ratio":0.992,"delta_pct":-0.8},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":45.0,"status":"ok","vs_main":{"label":"main","baseline":46.08,"ratio":0.977,"delta_pct":-2.3},"vs_tag":{"tag":"v0.2.0","baseline":46.15,"ratio":0.975,"delta_pct":-2.5},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":82.91,"status":"ok","vs_main":{"label":"main","baseline":80.89,"ratio":1.025,"delta_pct":2.5},"vs_tag":{"tag":"v0.2.0","baseline":82.77,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":4.248,"status":"ok","vs_main":{"label":"main","baseline":4.252,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":4.251,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":3.938,"status":"ok","vs_main":{"label":"main","baseline":3.936,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":3.967,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-10T13:03:52Z","commit":"573a7ee4d92edd38d031d3e4f194357ae7d180dd","pr":552,"run_id":27262780228,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"fp8_gemm","shape":"128x4096x4096","dtype":"fp8","metric":"speedup","value":1.18,"status":"ok","regression":false,"extra":{"flydsl_us":66.2,"aiter_us":56.3,"baseline":"aiter"},"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x4096x4096","dtype":"fp8","metric":"speedup","value":2.12,"status":"ok","regression":false,"extra":{"flydsl_us":65.3,"aiter_us":30.9,"baseline":"aiter"},"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x8192x8192","dtype":"fp8","metric":"speedup","value":0.41,"status":"ok","regression":false,"extra":{"flydsl_us":67.7,"aiter_us":164.3,"baseline":"aiter"},"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"4096x4096x4096","dtype":"fp8","metric":"speedup","value":0.85,"status":"ok","regression":false,"extra":{"flydsl_us":730.0,"aiter_us":863.7,"baseline":"aiter"},"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.51,"status":"ok","vs_main":{"label":"main","baseline":0.51,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":0.471,"ratio":1.083,"delta_pct":8.3},"regression":false,"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.509,"status":"ok","vs_main":{"label":"main","baseline":0.508,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":0.509,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.507,"status":"ok","vs_main":{"label":"main","baseline":0.507,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":0.491,"ratio":1.033,"delta_pct":3.3},"regression":false,"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"1024x1024x1024","dtype":"bf16","metric":"speedup","value":1.7,"status":"ok","regression":false,"extra":{"flydsl_us":46.3,"aiter_us":27.3,"baseline":"aiter"},"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"2048x2048x2048","dtype":"bf16","metric":"speedup","value":1.05,"status":"ok","regression":false,"extra":{"flydsl_us":152.4,"aiter_us":144.9,"baseline":"aiter"},"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"256x256x256","dtype":"bf16","metric":"speedup","value":6.98,"status":"ok","regression":false,"extra":{"flydsl_us":45.0,"aiter_us":6.4,"baseline":"aiter"},"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"4096x4096x4096","dtype":"bf16","metric":"speedup","value":1.13,"status":"ok","regression":false,"extra":{"flydsl_us":1275.9,"aiter_us":1133.0,"baseline":"aiter"},"ts":"2026-06-10T13:57:41Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"flash_attn","shape":"B16S8192H16Hkv16D128_causal","dtype":"bf16","metric":"TFLOPS","value":274.4,"status":"ok","vs_main":{"label":"main","baseline":274.5,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B32S8192H8Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":277.4,"status":"ok","vs_main":{"label":"main","baseline":277.1,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B4S8192H64Hkv64D128_causal","dtype":"bf16","metric":"TFLOPS","value":350.0,"status":"ok","vs_main":{"label":"main","baseline":349.7,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B4S8192H64Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":351.4,"status":"ok","vs_main":{"label":"main","baseline":351.3,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"fp8_8wave_rowscale","shape":"5120x5120x8320_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"fp8_8wave_rowscale","shape":"8192x8192x8192_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"16x40960x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":119.92,"status":"ok","vs_main":{"label":"main","baseline":119.48,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":119.18,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"16x77824x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":137.71,"status":"ok","vs_main":{"label":"main","baseline":137.87,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":138.31,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"256x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":306.11,"status":"ok","vs_main":{"label":"main","baseline":307.86,"ratio":0.994,"delta_pct":-0.6},"vs_tag":{"tag":"v0.2.0","baseline":305.7,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1353.35,"status":"ok","vs_main":{"label":"main","baseline":1363.18,"ratio":0.993,"delta_pct":-0.7},"vs_tag":{"tag":"v0.2.0","baseline":1353.37,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"bf16","metric":"TFLOPS","value":675.01,"status":"ok","vs_main":{"label":"main","baseline":683.49,"ratio":0.988,"delta_pct":-1.2},"vs_tag":{"tag":"v0.2.0","baseline":684.83,"ratio":0.986,"delta_pct":-1.4},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"512x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":490.46,"status":"ok","vs_main":{"label":"main","baseline":493.04,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":491.44,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp8","metric":"TFLOPS","value":1430.84,"status":"ok","vs_main":{"label":"main","baseline":1430.66,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":1415.71,"ratio":1.011,"delta_pct":1.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile64x128x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile64x256x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1464.87,"status":"ok","vs_main":{"label":"main","baseline":1477.48,"ratio":0.991,"delta_pct":-0.9},"vs_tag":{"tag":"v0.2.0","baseline":1475.71,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int8","metric":"TFLOPS","value":1477.43,"status":"ok","vs_main":{"label":"main","baseline":1471.44,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":1473.99,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int4","metric":"TFLOPS","value":1338.47,"status":"ok","vs_main":{"label":"main","baseline":1337.38,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":1330.65,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"256x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":264.22,"status":"ok","vs_main":{"label":"main","baseline":264.1,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":264.4,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"5120x5120x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1199.9,"status":"ok","vs_main":{"label":"main","baseline":1185.32,"ratio":1.012,"delta_pct":1.2},"vs_tag":{"tag":"v0.2.0","baseline":1196.88,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"512x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":443.66,"status":"ok","vs_main":{"label":"main","baseline":439.96,"ratio":1.008,"delta_pct":0.8},"vs_tag":{"tag":"v0.2.0","baseline":433.56,"ratio":1.023,"delta_pct":2.3},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1157.36,"status":"ok","vs_main":{"label":"main","baseline":1165.58,"ratio":0.993,"delta_pct":-0.7},"vs_tag":{"tag":"v0.2.0","baseline":1156.93,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1405.26,"status":"ok","vs_main":{"label":"main","baseline":1400.31,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":1390.96,"ratio":1.01,"delta_pct":1.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"int8","metric":"TFLOPS","value":1377.67,"status":"ok","vs_main":{"label":"main","baseline":1366.44,"ratio":1.008,"delta_pct":0.8},"vs_tag":{"tag":"v0.2.0","baseline":1376.88,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x256_2tg","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"hgemm","shape":"32x384x7168_tile16x64x128_sk14","dtype":"bf16","metric":"TFLOPS","value":19.58,"status":"ok","vs_main":{"label":"main","baseline":19.58,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":19.62,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"hgemm","shape":"4096x4096x4096_tile128x128x64_sk1","dtype":"fp16","metric":"TFLOPS","value":316.32,"status":"ok","vs_main":{"label":"main","baseline":316.36,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":316.33,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":4.145,"status":"ok","vs_main":{"label":"main","baseline":4.137,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":2.276,"ratio":1.821,"delta_pct":82.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"mla","shape":"B32C8192","dtype":"fp8","metric":"TFLOPS","value":715.39,"status":"ok","vs_main":{"label":"main","baseline":719.06,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":717.28,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm1","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":643.51,"status":"ok","vs_main":{"label":"main","baseline":643.26,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":643.47,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm1","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":35.22,"status":"ok","vs_main":{"label":"main","baseline":34.96,"ratio":1.007,"delta_pct":0.7},"vs_tag":{"tag":"v0.2.0","baseline":34.99,"ratio":1.007,"delta_pct":0.7},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_atomic","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1072.34,"status":"ok","vs_main":{"label":"main","baseline":1068.76,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":1076.41,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_atomic","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":33.04,"status":"ok","vs_main":{"label":"main","baseline":32.85,"ratio":1.006,"delta_pct":0.6},"vs_tag":{"tag":"v0.2.0","baseline":32.79,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_reduce","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1026.02,"status":"ok","vs_main":{"label":"main","baseline":1023.71,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":1024.97,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_reduce","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":33.22,"status":"ok","vs_main":{"label":"main","baseline":32.88,"ratio":1.01,"delta_pct":1.0},"vs_tag":{"tag":"v0.2.0","baseline":32.9,"ratio":1.01,"delta_pct":1.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":27.97,"status":"ok","vs_main":{"label":"main","baseline":27.96,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":27.96,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":53.5,"status":"ok","vs_main":{"label":"main","baseline":53.41,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":53.48,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":103.98,"status":"ok","vs_main":{"label":"main","baseline":104.14,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":103.91,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":26.94,"status":"ok","vs_main":{"label":"main","baseline":26.69,"ratio":1.009,"delta_pct":0.9},"vs_tag":{"tag":"v0.2.0","baseline":26.67,"ratio":1.01,"delta_pct":1.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":49.21,"status":"ok","vs_main":{"label":"main","baseline":49.07,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":49.05,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":88.74,"status":"ok","vs_main":{"label":"main","baseline":88.88,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":88.89,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":25.19,"status":"ok","vs_main":{"label":"main","baseline":24.97,"ratio":1.009,"delta_pct":0.9},"vs_tag":{"tag":"v0.2.0","baseline":25.69,"ratio":0.981,"delta_pct":-1.9},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":45.3,"status":"ok","vs_main":{"label":"main","baseline":45.78,"ratio":0.99,"delta_pct":-1.0},"vs_tag":{"tag":"v0.2.0","baseline":45.28,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":81.02,"status":"ok","vs_main":{"label":"main","baseline":81.72,"ratio":0.991,"delta_pct":-0.9},"vs_tag":{"tag":"v0.2.0","baseline":80.72,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":4.264,"status":"ok","vs_main":{"label":"main","baseline":4.263,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":4.261,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":3.927,"status":"ok","vs_main":{"label":"main","baseline":3.935,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":3.967,"ratio":0.99,"delta_pct":-1.0},"regression":false,"ts":"2026-06-10T14:24:39Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B16S8192H16Hkv16D128_causal","dtype":"bf16","metric":"TFLOPS","value":1189.2,"status":"ok","vs_main":{"label":"main","baseline":1188.9,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B32S8192H8Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":1172.5,"status":"ok","vs_main":{"label":"main","baseline":1173.4,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B4S8192H64Hkv64D128_causal","dtype":"bf16","metric":"TFLOPS","value":1174.4,"status":"ok","vs_main":{"label":"main","baseline":1172.2,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B4S8192H64Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":1200.6,"status":"ok","vs_main":{"label":"main","baseline":1201.0,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"fp8_8wave_rowscale","shape":"5120x5120x8320_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","value":2397.43,"status":"ok","vs_main":{"label":"main","baseline":2456.8,"ratio":0.976,"delta_pct":-2.4},"vs_tag":{"tag":"v0.2.0","baseline":2464.0,"ratio":0.973,"delta_pct":-2.7},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"fp8_8wave_rowscale","shape":"8192x8192x8192_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","value":3115.48,"status":"ok","vs_main":{"label":"main","baseline":3131.28,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":3135.49,"ratio":0.994,"delta_pct":-0.6},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"16x40960x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":155.22,"status":"ok","vs_main":{"label":"main","baseline":157.03,"ratio":0.988,"delta_pct":-1.2},"vs_tag":{"tag":"v0.2.0","baseline":155.94,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"16x77824x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":172.45,"status":"ok","vs_main":{"label":"main","baseline":175.35,"ratio":0.983,"delta_pct":-1.7},"vs_tag":{"tag":"v0.2.0","baseline":173.4,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"256x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":334.82,"status":"ok","vs_main":{"label":"main","baseline":335.13,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":333.05,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1806.22,"status":"ok","vs_main":{"label":"main","baseline":1814.8,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":1815.62,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"bf16","metric":"TFLOPS","value":922.5,"status":"ok","vs_main":{"label":"main","baseline":916.88,"ratio":1.006,"delta_pct":0.6},"vs_tag":{"tag":"v0.2.0","baseline":926.54,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"512x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":528.47,"status":"ok","vs_main":{"label":"main","baseline":527.04,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":528.24,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp8","metric":"TFLOPS","value":1862.99,"status":"ok","vs_main":{"label":"main","baseline":1854.21,"ratio":1.005,"delta_pct":0.5},"vs_tag":{"tag":"v0.2.0","baseline":1854.53,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp4","metric":"TFLOPS","value":4100.46,"status":"ok","vs_main":{"label":"main","baseline":4090.12,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":4086.91,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x256","dtype":"fp4","metric":"TFLOPS","value":3336.01,"status":"ok","vs_main":{"label":"main","baseline":3325.15,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":3316.19,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile64x128x256","dtype":"fp4","metric":"TFLOPS","value":2996.99,"status":"ok","vs_main":{"label":"main","baseline":3009.04,"ratio":0.996,"delta_pct":-0.4},"vs_tag":{"tag":"v0.2.0","baseline":3003.97,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile64x256x256","dtype":"fp4","metric":"TFLOPS","value":3368.77,"status":"ok","vs_main":{"label":"main","baseline":3390.93,"ratio":0.993,"delta_pct":-0.7},"vs_tag":{"tag":"v0.2.0","baseline":3380.62,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":2032.36,"status":"ok","vs_main":{"label":"main","baseline":2033.64,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":2029.81,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int8","metric":"TFLOPS","value":1692.46,"status":"ok","vs_main":{"label":"main","baseline":1680.59,"ratio":1.007,"delta_pct":0.7},"vs_tag":{"tag":"v0.2.0","baseline":1688.55,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int4","metric":"TFLOPS","value":1668.74,"status":"ok","vs_main":{"label":"main","baseline":1654.46,"ratio":1.009,"delta_pct":0.9},"vs_tag":{"tag":"v0.2.0","baseline":1653.03,"ratio":1.01,"delta_pct":1.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"256x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":364.34,"status":"ok","vs_main":{"label":"main","baseline":362.1,"ratio":1.006,"delta_pct":0.6},"vs_tag":{"tag":"v0.2.0","baseline":362.81,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"5120x5120x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":2312.24,"status":"ok","vs_main":{"label":"main","baseline":2303.84,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":2303.07,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"512x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":522.11,"status":"ok","vs_main":{"label":"main","baseline":523.3,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":519.0,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":2649.05,"status":"ok","vs_main":{"label":"main","baseline":2659.94,"ratio":0.996,"delta_pct":-0.4},"vs_tag":{"tag":"v0.2.0","baseline":2674.53,"ratio":0.99,"delta_pct":-1.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":2690.77,"status":"ok","vs_main":{"label":"main","baseline":2682.34,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":2683.79,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"int8","metric":"TFLOPS","value":1216.35,"status":"ok","vs_main":{"label":"main","baseline":1213.56,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":1209.67,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp4","metric":"TFLOPS","value":4163.03,"status":"ok","vs_main":{"label":"main","baseline":4186.48,"ratio":0.994,"delta_pct":-0.6},"vs_tag":{"tag":"v0.2.0","baseline":4176.16,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x256_2tg","dtype":"fp4","metric":"TFLOPS","value":3625.72,"status":"ok","vs_main":{"label":"main","baseline":3652.89,"ratio":0.993,"delta_pct":-0.7},"vs_tag":{"tag":"v0.2.0","baseline":3683.1,"ratio":0.984,"delta_pct":-1.6},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"hgemm","shape":"2048x2048x2048_tile128x128x64_sk1","dtype":"fp16","metric":"TFLOPS","value":736.81,"status":"ok","vs_main":{"label":"main","baseline":729.04,"ratio":1.011,"delta_pct":1.1},"vs_tag":{"tag":"v0.2.0","baseline":740.29,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"hgemm","shape":"32x384x7168_tile32x64x64_sk16","dtype":"bf16","metric":"TFLOPS","value":28.06,"status":"ok","vs_main":{"label":"main","baseline":28.0,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":28.13,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":5.691,"status":"ok","vs_main":{"label":"main","baseline":5.649,"ratio":1.007,"delta_pct":0.7},"vs_tag":{"tag":"v0.2.0","baseline":1.686,"ratio":3.375,"delta_pct":237.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"mla","shape":"B32C8192","dtype":"fp8","metric":"TFLOPS","value":994.28,"status":"ok","vs_main":{"label":"main","baseline":998.22,"ratio":0.996,"delta_pct":-0.4},"vs_tag":{"tag":"v0.2.0","baseline":994.94,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":636.67,"status":"ok","vs_main":{"label":"main","baseline":630.4,"ratio":1.01,"delta_pct":1.0},"vs_tag":{"tag":"v0.2.0","baseline":655.05,"ratio":0.972,"delta_pct":-2.8},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":1000.52,"status":"ok","vs_main":{"label":"main","baseline":995.01,"ratio":1.006,"delta_pct":0.6},"vs_tag":{"tag":"v0.2.0","baseline":985.3,"ratio":1.015,"delta_pct":1.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":1383.62,"status":"ok","vs_main":{"label":"main","baseline":1392.55,"ratio":0.994,"delta_pct":-0.6},"vs_tag":{"tag":"v0.2.0","baseline":1393.43,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":343.9,"status":"ok","vs_main":{"label":"main","baseline":341.91,"ratio":1.006,"delta_pct":0.6},"vs_tag":{"tag":"v0.2.0","baseline":351.45,"ratio":0.979,"delta_pct":-2.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":1665.1,"status":"ok","vs_main":{"label":"main","baseline":1668.59,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":1667.9,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":375.21,"status":"ok","vs_main":{"label":"main","baseline":377.41,"ratio":0.994,"delta_pct":-0.6},"vs_tag":{"tag":"v0.2.0","baseline":376.7,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":551.37,"status":"ok","vs_main":{"label":"main","baseline":549.66,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":550.98,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":594.7,"status":"ok","vs_main":{"label":"main","baseline":609.45,"ratio":0.976,"delta_pct":-2.4},"vs_tag":{"tag":"v0.2.0","baseline":606.08,"ratio":0.981,"delta_pct":-1.9},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":332.11,"status":"ok","vs_main":{"label":"main","baseline":334.45,"ratio":0.993,"delta_pct":-0.7},"vs_tag":{"tag":"v0.2.0","baseline":332.32,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":647.52,"status":"ok","vs_main":{"label":"main","baseline":654.01,"ratio":0.99,"delta_pct":-1.0},"vs_tag":{"tag":"v0.2.0","baseline":662.32,"ratio":0.978,"delta_pct":-2.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":356.59,"status":"ok","vs_main":{"label":"main","baseline":356.82,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":355.65,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":526.82,"status":"ok","vs_main":{"label":"main","baseline":529.66,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":523.53,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":583.79,"status":"ok","vs_main":{"label":"main","baseline":584.4,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":583.75,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":303.1,"status":"ok","vs_main":{"label":"main","baseline":308.69,"ratio":0.982,"delta_pct":-1.8},"vs_tag":{"tag":"v0.2.0","baseline":303.84,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":628.59,"status":"ok","vs_main":{"label":"main","baseline":634.35,"ratio":0.991,"delta_pct":-0.9},"vs_tag":{"tag":"v0.2.0","baseline":625.97,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":634.63,"status":"ok","vs_main":{"label":"main","baseline":635.74,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":632.34,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":90.39,"status":"ok","vs_main":{"label":"main","baseline":90.33,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":89.8,"ratio":1.007,"delta_pct":0.7},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":81.8,"status":"ok","vs_main":{"label":"main","baseline":81.73,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":81.48,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":16.22,"status":"ok","vs_main":{"label":"main","baseline":16.43,"ratio":0.987,"delta_pct":-1.3},"vs_tag":{"tag":"v0.2.0","baseline":15.99,"ratio":1.014,"delta_pct":1.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":1714.95,"status":"ok","vs_main":{"label":"main","baseline":1714.75,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":1714.44,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":2411.27,"status":"ok","vs_main":{"label":"main","baseline":2414.93,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":2405.08,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":948.28,"status":"ok","vs_main":{"label":"main","baseline":951.44,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":945.49,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":3163.48,"status":"ok","vs_main":{"label":"main","baseline":3162.37,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":3161.19,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":2304.76,"status":"ok","vs_main":{"label":"main","baseline":2306.85,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":2303.68,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":2580.51,"status":"ok","vs_main":{"label":"main","baseline":2586.14,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":2588.32,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":486.72,"status":"ok","vs_main":{"label":"main","baseline":487.7,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":488.4,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":72.99,"status":"ok","vs_main":{"label":"main","baseline":72.04,"ratio":1.013,"delta_pct":1.3},"vs_tag":{"tag":"v0.2.0","baseline":70.27,"ratio":1.039,"delta_pct":3.9},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":66.48,"status":"ok","vs_main":{"label":"main","baseline":65.35,"ratio":1.017,"delta_pct":1.7},"vs_tag":{"tag":"v0.2.0","baseline":65.44,"ratio":1.016,"delta_pct":1.6},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":20.69,"status":"ok","vs_main":{"label":"main","baseline":15.95,"ratio":1.297,"delta_pct":29.7},"vs_tag":{"tag":"v0.2.0","baseline":17.06,"ratio":1.213,"delta_pct":21.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":333.28,"status":"ok","vs_main":{"label":"main","baseline":334.13,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":333.94,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1233.56,"status":"ok","vs_main":{"label":"main","baseline":1240.14,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":1239.84,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":307.6,"status":"ok","vs_main":{"label":"main","baseline":308.58,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":311.58,"ratio":0.987,"delta_pct":-1.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1892.3,"status":"ok","vs_main":{"label":"main","baseline":1892.2,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":1891.97,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":333.97,"status":"ok","vs_main":{"label":"main","baseline":334.3,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":333.98,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1669.77,"status":"ok","vs_main":{"label":"main","baseline":1676.48,"ratio":0.996,"delta_pct":-0.4},"vs_tag":{"tag":"v0.2.0","baseline":1668.29,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":450.59,"status":"ok","vs_main":{"label":"main","baseline":449.97,"ratio":1.001,"delta_pct":0.1},"vs_tag":{"tag":"v0.2.0","baseline":448.9,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":64.62,"status":"ok","vs_main":{"label":"main","baseline":63.17,"ratio":1.023,"delta_pct":2.3},"vs_tag":{"tag":"v0.2.0","baseline":63.44,"ratio":1.019,"delta_pct":1.9},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":60.53,"status":"ok","vs_main":{"label":"main","baseline":60.83,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":60.56,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":15.94,"status":"ok","vs_main":{"label":"main","baseline":16.01,"ratio":0.996,"delta_pct":-0.4},"vs_tag":{"tag":"v0.2.0","baseline":15.86,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":466.53,"status":"ok","vs_main":{"label":"main","baseline":466.63,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":460.98,"ratio":1.012,"delta_pct":1.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1123.07,"status":"ok","vs_main":{"label":"main","baseline":1117.13,"ratio":1.005,"delta_pct":0.5},"vs_tag":{"tag":"v0.2.0","baseline":1099.3,"ratio":1.022,"delta_pct":2.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":363.56,"status":"ok","vs_main":{"label":"main","baseline":360.95,"ratio":1.007,"delta_pct":0.7},"vs_tag":{"tag":"v0.2.0","baseline":353.62,"ratio":1.028,"delta_pct":2.8},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1526.72,"status":"ok","vs_main":{"label":"main","baseline":1533.93,"ratio":0.995,"delta_pct":-0.5},"vs_tag":{"tag":"v0.2.0","baseline":1541.12,"ratio":0.991,"delta_pct":-0.9},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":533.01,"status":"ok","vs_main":{"label":"main","baseline":533.97,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0","baseline":534.24,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1381.45,"status":"ok","vs_main":{"label":"main","baseline":1380.89,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":1338.26,"ratio":1.032,"delta_pct":3.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm1","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1140.94,"status":"ok","vs_main":{"label":"main","baseline":1144.05,"ratio":0.997,"delta_pct":-0.3},"vs_tag":{"tag":"v0.2.0","baseline":1138.4,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm1","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":48.52,"status":"ok","vs_main":{"label":"main","baseline":48.56,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":48.39,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_atomic","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1353.15,"status":"ok","vs_main":{"label":"main","baseline":1352.75,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0","baseline":1348.9,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_atomic","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":48.97,"status":"ok","vs_main":{"label":"main","baseline":49.83,"ratio":0.983,"delta_pct":-1.7},"vs_tag":{"tag":"v0.2.0","baseline":49.03,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_reduce","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1374.99,"status":"ok","vs_main":{"label":"main","baseline":1375.54,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":1374.71,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_reduce","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":46.51,"status":"ok","vs_main":{"label":"main","baseline":46.83,"ratio":0.993,"delta_pct":-0.7},"vs_tag":{"tag":"v0.2.0","baseline":46.11,"ratio":1.009,"delta_pct":0.9},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s1","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":38.84,"status":"ok","vs_main":{"label":"main","baseline":38.71,"ratio":1.003,"delta_pct":0.3},"vs_tag":{"tag":"v0.2.0","baseline":38.43,"ratio":1.011,"delta_pct":1.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s1","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":75.78,"status":"ok","vs_main":{"label":"main","baseline":75.28,"ratio":1.007,"delta_pct":0.7},"vs_tag":{"tag":"v0.2.0","baseline":74.95,"ratio":1.011,"delta_pct":1.1},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s1","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":119.62,"status":"ok","vs_main":{"label":"main","baseline":119.19,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":118.9,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_atomic","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":37.09,"status":"ok","vs_main":{"label":"main","baseline":36.58,"ratio":1.014,"delta_pct":1.4},"vs_tag":{"tag":"v0.2.0","baseline":37.29,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_atomic","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":69.72,"status":"ok","vs_main":{"label":"main","baseline":69.55,"ratio":1.002,"delta_pct":0.2},"vs_tag":{"tag":"v0.2.0","baseline":69.33,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_atomic","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":127.66,"status":"ok","vs_main":{"label":"main","baseline":127.72,"ratio":1.0,"delta_pct":-0.0},"vs_tag":{"tag":"v0.2.0","baseline":127.4,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_reduce","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":37.22,"status":"ok","vs_main":{"label":"main","baseline":37.24,"ratio":0.999,"delta_pct":-0.1},"vs_tag":{"tag":"v0.2.0","baseline":37.15,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_reduce","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":66.57,"status":"ok","vs_main":{"label":"main","baseline":65.94,"ratio":1.01,"delta_pct":1.0},"vs_tag":{"tag":"v0.2.0","baseline":66.47,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_reduce","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":120.46,"status":"ok","vs_main":{"label":"main","baseline":121.26,"ratio":0.993,"delta_pct":-0.7},"vs_tag":{"tag":"v0.2.0","baseline":118.16,"ratio":1.019,"delta_pct":1.9},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":5.855,"status":"ok","vs_main":{"label":"main","baseline":5.813,"ratio":1.007,"delta_pct":0.7},"vs_tag":{"tag":"v0.2.0","baseline":6.038,"ratio":0.97,"delta_pct":-3.0},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":5.696,"status":"ok","vs_main":{"label":"main","baseline":5.675,"ratio":1.004,"delta_pct":0.4},"vs_tag":{"tag":"v0.2.0","baseline":6.082,"ratio":0.937,"delta_pct":-6.3},"regression":false,"ts":"2026-06-10T14:36:08Z","commit":"3e7f66e713c72b03cefddf3bb1cb26f8992288d4","run_id":27280390572,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"fp8_gemm","shape":"128x4096x4096","dtype":"fp8","metric":"speedup","value":1.48,"status":"ok","regression":false,"extra":{"flydsl_us":82.9,"aiter_us":56.1,"baseline":"aiter"},"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x4096x4096","dtype":"fp8","metric":"speedup","value":2.14,"status":"ok","regression":false,"extra":{"flydsl_us":65.6,"aiter_us":30.7,"baseline":"aiter"},"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x8192x8192","dtype":"fp8","metric":"speedup","value":0.42,"status":"ok","regression":false,"extra":{"flydsl_us":68.1,"aiter_us":163.0,"baseline":"aiter"},"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"4096x4096x4096","dtype":"fp8","metric":"speedup","value":0.84,"status":"ok","regression":false,"extra":{"flydsl_us":729.5,"aiter_us":868.6,"baseline":"aiter"},"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.511,"status":"ok","vs_main":{"label":"main","baseline":0.511,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.508,"status":"ok","vs_main":{"label":"main","baseline":0.508,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.508,"status":"ok","vs_main":{"label":"main","baseline":0.508,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"1024x1024x1024","dtype":"bf16","metric":"speedup","value":1.63,"status":"ok","regression":false,"extra":{"flydsl_us":44.3,"aiter_us":27.2,"baseline":"aiter"},"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"2048x2048x2048","dtype":"bf16","metric":"speedup","value":1.05,"status":"ok","regression":false,"extra":{"flydsl_us":152.7,"aiter_us":146.1,"baseline":"aiter"},"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"256x256x256","dtype":"bf16","metric":"speedup","value":6.14,"status":"ok","regression":false,"extra":{"flydsl_us":44.1,"aiter_us":7.2,"baseline":"aiter"},"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"4096x4096x4096","dtype":"bf16","metric":"speedup","value":1.13,"status":"ok","regression":false,"extra":{"flydsl_us":1277.5,"aiter_us":1131.2,"baseline":"aiter"},"ts":"2026-06-11T01:47:33Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"flash_attn","shape":"B16S8192H16Hkv16D128_causal","dtype":"bf16","metric":"TFLOPS","value":274.4,"status":"ok","vs_main":{"label":"main","baseline":274.6,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B32S8192H8Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":276.7,"status":"ok","vs_main":{"label":"main","baseline":277.0,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B4S8192H64Hkv64D128_causal","dtype":"bf16","metric":"TFLOPS","value":351.0,"status":"ok","vs_main":{"label":"main","baseline":350.7,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B4S8192H64Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":351.6,"status":"ok","vs_main":{"label":"main","baseline":352.2,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"fp8_8wave_rowscale","shape":"5120x5120x8320_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"fp8_8wave_rowscale","shape":"8192x8192x8192_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"16x40960x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":121.19,"status":"ok","vs_main":{"label":"main","baseline":120.35,"ratio":1.007,"delta_pct":0.7},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"16x77824x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":139.31,"status":"ok","vs_main":{"label":"main","baseline":141.23,"ratio":0.986,"delta_pct":-1.4},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"256x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":308.99,"status":"ok","vs_main":{"label":"main","baseline":309.87,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1368.04,"status":"ok","vs_main":{"label":"main","baseline":1367.91,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"bf16","metric":"TFLOPS","value":690.68,"status":"ok","vs_main":{"label":"main","baseline":689.87,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"512x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":494.66,"status":"ok","vs_main":{"label":"main","baseline":490.73,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp8","metric":"TFLOPS","value":1432.02,"status":"ok","vs_main":{"label":"main","baseline":1430.19,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile64x128x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile64x256x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1481.42,"status":"ok","vs_main":{"label":"main","baseline":1481.44,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int8","metric":"TFLOPS","value":1482.54,"status":"ok","vs_main":{"label":"main","baseline":1476.67,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int4","metric":"TFLOPS","value":1336.46,"status":"ok","vs_main":{"label":"main","baseline":1342.53,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"256x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":266.33,"status":"ok","vs_main":{"label":"main","baseline":266.88,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"5120x5120x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1200.45,"status":"ok","vs_main":{"label":"main","baseline":1200.35,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"512x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":448.49,"status":"ok","vs_main":{"label":"main","baseline":445.06,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1179.41,"status":"ok","vs_main":{"label":"main","baseline":1164.55,"ratio":1.013,"delta_pct":1.3},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1405.6,"status":"ok","vs_main":{"label":"main","baseline":1410.54,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"int8","metric":"TFLOPS","value":1384.92,"status":"ok","vs_main":{"label":"main","baseline":1385.12,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x256_2tg","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"hgemm","shape":"32x384x7168_tile16x64x128_sk14","dtype":"bf16","metric":"TFLOPS","value":19.37,"status":"ok","vs_main":{"label":"main","baseline":19.23,"ratio":1.007,"delta_pct":0.7},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"hgemm","shape":"4096x4096x4096_tile128x128x64_sk1","dtype":"fp16","metric":"TFLOPS","value":317.27,"status":"ok","vs_main":{"label":"main","baseline":317.64,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":4.171,"status":"ok","vs_main":{"label":"main","baseline":4.16,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"mla","shape":"B32C8192","dtype":"fp8","metric":"TFLOPS","value":703.14,"status":"ok","vs_main":{"label":"main","baseline":705.43,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm1","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":644.9,"status":"ok","vs_main":{"label":"main","baseline":644.09,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm1","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":35.2,"status":"ok","vs_main":{"label":"main","baseline":35.27,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_atomic","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1067.99,"status":"ok","vs_main":{"label":"main","baseline":1072.38,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_atomic","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":34.21,"status":"ok","vs_main":{"label":"main","baseline":33.72,"ratio":1.015,"delta_pct":1.5},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_reduce","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1031.73,"status":"ok","vs_main":{"label":"main","baseline":1030.73,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_reduce","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":33.73,"status":"ok","vs_main":{"label":"main","baseline":32.99,"ratio":1.022,"delta_pct":2.2},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":28.22,"status":"ok","vs_main":{"label":"main","baseline":28.23,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":54.04,"status":"ok","vs_main":{"label":"main","baseline":54.09,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":105.41,"status":"ok","vs_main":{"label":"main","baseline":105.01,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":27.29,"status":"ok","vs_main":{"label":"main","baseline":27.43,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":49.91,"status":"ok","vs_main":{"label":"main","baseline":49.51,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":89.2,"status":"ok","vs_main":{"label":"main","baseline":91.11,"ratio":0.979,"delta_pct":-2.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":25.1,"status":"ok","vs_main":{"label":"main","baseline":24.98,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":45.46,"status":"ok","vs_main":{"label":"main","baseline":45.31,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":81.38,"status":"ok","vs_main":{"label":"main","baseline":81.47,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":4.288,"status":"ok","vs_main":{"label":"main","baseline":4.267,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":3.939,"status":"ok","vs_main":{"label":"main","baseline":4.029,"ratio":0.978,"delta_pct":-2.2},"regression":false,"ts":"2026-06-11T02:09:15Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B16S8192H16Hkv16D128_causal","dtype":"bf16","metric":"TFLOPS","value":1171.5,"status":"ok","vs_main":{"label":"main","baseline":1170.9,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B32S8192H8Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":1157.0,"status":"ok","vs_main":{"label":"main","baseline":1156.3,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B4S8192H64Hkv64D128_causal","dtype":"bf16","metric":"TFLOPS","value":1167.9,"status":"ok","vs_main":{"label":"main","baseline":1168.6,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"flash_attn","shape":"B4S8192H64Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":1183.6,"status":"ok","vs_main":{"label":"main","baseline":1183.2,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"fp8_8wave_rowscale","shape":"5120x5120x8320_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","value":2413.74,"status":"ok","vs_main":{"label":"main","baseline":2420.26,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"fp8_8wave_rowscale","shape":"8192x8192x8192_tile256x256_rowmajo","dtype":"fp8","metric":"TFLOPS","value":3085.66,"status":"ok","vs_main":{"label":"main","baseline":3097.55,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"16x40960x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":155.99,"status":"ok","vs_main":{"label":"main","baseline":155.71,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"16x77824x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":172.91,"status":"ok","vs_main":{"label":"main","baseline":173.43,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"256x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":331.53,"status":"ok","vs_main":{"label":"main","baseline":330.85,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1810.2,"status":"ok","vs_main":{"label":"main","baseline":1814.76,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"bf16","metric":"TFLOPS","value":926.95,"status":"ok","vs_main":{"label":"main","baseline":920.86,"ratio":1.007,"delta_pct":0.7},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"512x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":531.28,"status":"ok","vs_main":{"label":"main","baseline":530.84,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp8","metric":"TFLOPS","value":1859.79,"status":"ok","vs_main":{"label":"main","baseline":1859.82,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp4","metric":"TFLOPS","value":4037.1,"status":"ok","vs_main":{"label":"main","baseline":4063.42,"ratio":0.994,"delta_pct":-0.6},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x256","dtype":"fp4","metric":"TFLOPS","value":3262.11,"status":"ok","vs_main":{"label":"main","baseline":3303.17,"ratio":0.988,"delta_pct":-1.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile64x128x256","dtype":"fp4","metric":"TFLOPS","value":2995.97,"status":"ok","vs_main":{"label":"main","baseline":2993.94,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"8192x8192x8192_tile64x256x256","dtype":"fp4","metric":"TFLOPS","value":3372.17,"status":"ok","vs_main":{"label":"main","baseline":3358.08,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":2028.06,"status":"ok","vs_main":{"label":"main","baseline":2029.19,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int8","metric":"TFLOPS","value":1666.97,"status":"ok","vs_main":{"label":"main","baseline":1675.28,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int4","metric":"TFLOPS","value":1668.12,"status":"ok","vs_main":{"label":"main","baseline":1652.35,"ratio":1.01,"delta_pct":1.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"256x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":360.32,"status":"ok","vs_main":{"label":"main","baseline":358.35,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"5120x5120x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":2288.97,"status":"ok","vs_main":{"label":"main","baseline":2290.6,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"512x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":532.52,"status":"ok","vs_main":{"label":"main","baseline":528.21,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":2645.94,"status":"ok","vs_main":{"label":"main","baseline":2646.85,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":2683.46,"status":"ok","vs_main":{"label":"main","baseline":2671.45,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"int8","metric":"TFLOPS","value":1219.14,"status":"ok","vs_main":{"label":"main","baseline":1221.01,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp4","metric":"TFLOPS","value":4157.43,"status":"ok","vs_main":{"label":"main","baseline":4185.3,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x256_2tg","dtype":"fp4","metric":"TFLOPS","value":3655.1,"status":"ok","vs_main":{"label":"main","baseline":3657.72,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"hgemm","shape":"2048x2048x2048_tile128x128x64_sk1","dtype":"fp16","metric":"TFLOPS","value":693.93,"status":"ok","vs_main":{"label":"main","baseline":728.52,"ratio":0.953,"delta_pct":-4.7},"regression":true,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"hgemm","shape":"32x384x7168_tile32x64x64_sk16","dtype":"bf16","metric":"TFLOPS","value":28.09,"status":"ok","vs_main":{"label":"main","baseline":27.12,"ratio":1.036,"delta_pct":3.6},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":5.688,"status":"ok","vs_main":{"label":"main","baseline":5.697,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"mla","shape":"B32C8192","dtype":"fp8","metric":"TFLOPS","value":987.9,"status":"ok","vs_main":{"label":"main","baseline":987.77,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":598.88,"status":"ok","vs_main":{"label":"main","baseline":606.26,"ratio":0.988,"delta_pct":-1.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":979.68,"status":"ok","vs_main":{"label":"main","baseline":981.68,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":1375.9,"status":"ok","vs_main":{"label":"main","baseline":1382.65,"ratio":0.995,"delta_pct":-0.5},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":330.69,"status":"ok","vs_main":{"label":"main","baseline":338.24,"ratio":0.978,"delta_pct":-2.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s1","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":1659.95,"status":"ok","vs_main":{"label":"main","baseline":1660.93,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":376.14,"status":"ok","vs_main":{"label":"main","baseline":374.83,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":554.07,"status":"ok","vs_main":{"label":"main","baseline":551.69,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":599.03,"status":"ok","vs_main":{"label":"main","baseline":597.33,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":331.71,"status":"ok","vs_main":{"label":"main","baseline":331.19,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_atomic","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":649.67,"status":"ok","vs_main":{"label":"main","baseline":651.45,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":352.04,"status":"ok","vs_main":{"label":"main","baseline":356.44,"ratio":0.988,"delta_pct":-1.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":512.03,"status":"ok","vs_main":{"label":"main","baseline":518.34,"ratio":0.988,"delta_pct":-1.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":557.24,"status":"ok","vs_main":{"label":"main","baseline":561.66,"ratio":0.992,"delta_pct":-0.8},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":294.03,"status":"ok","vs_main":{"label":"main","baseline":299.53,"ratio":0.982,"delta_pct":-1.8},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_a8w4_s2_reduce","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","value":611.02,"status":"ok","vs_main":{"label":"main","baseline":611.42,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":629.92,"status":"ok","vs_main":{"label":"main","baseline":626.55,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":89.91,"status":"ok","vs_main":{"label":"main","baseline":89.11,"ratio":1.009,"delta_pct":0.9},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":81.34,"status":"ok","vs_main":{"label":"main","baseline":80.8,"ratio":1.007,"delta_pct":0.7},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":15.64,"status":"ok","vs_main":{"label":"main","baseline":15.52,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":1717.91,"status":"ok","vs_main":{"label":"main","baseline":1718.18,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":2423.96,"status":"ok","vs_main":{"label":"main","baseline":2417.81,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":928.65,"status":"ok","vs_main":{"label":"main","baseline":927.86,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":3162.68,"status":"ok","vs_main":{"label":"main","baseline":3165.93,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":2312.69,"status":"ok","vs_main":{"label":"main","baseline":2310.2,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s1","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":2601.31,"status":"ok","vs_main":{"label":"main","baseline":2598.24,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":486.89,"status":"ok","vs_main":{"label":"main","baseline":489.65,"ratio":0.994,"delta_pct":-0.6},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":72.11,"status":"ok","vs_main":{"label":"main","baseline":70.95,"ratio":1.016,"delta_pct":1.6},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":65.9,"status":"ok","vs_main":{"label":"main","baseline":65.7,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":20.46,"status":"ok","vs_main":{"label":"main","baseline":15.59,"ratio":1.312,"delta_pct":31.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":333.56,"status":"ok","vs_main":{"label":"main","baseline":333.91,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1234.94,"status":"ok","vs_main":{"label":"main","baseline":1237.32,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":309.72,"status":"ok","vs_main":{"label":"main","baseline":309.67,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1891.84,"status":"ok","vs_main":{"label":"main","baseline":1890.83,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":334.01,"status":"ok","vs_main":{"label":"main","baseline":334.25,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_atomic","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1673.57,"status":"ok","vs_main":{"label":"main","baseline":1664.94,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":450.26,"status":"ok","vs_main":{"label":"main","baseline":448.8,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":62.1,"status":"ok","vs_main":{"label":"main","baseline":61.96,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":61.04,"status":"ok","vs_main":{"label":"main","baseline":61.18,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":15.77,"status":"ok","vs_main":{"label":"main","baseline":15.44,"ratio":1.021,"delta_pct":2.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":458.75,"status":"ok","vs_main":{"label":"main","baseline":458.53,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1099.9,"status":"ok","vs_main":{"label":"main","baseline":1094.71,"ratio":1.005,"delta_pct":0.5},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":352.47,"status":"ok","vs_main":{"label":"main","baseline":351.5,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1535.69,"status":"ok","vs_main":{"label":"main","baseline":1498.38,"ratio":1.025,"delta_pct":2.5},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","value":493.19,"status":"ok","vs_main":{"label":"main","baseline":493.17,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_fp4_s2_reduce","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","value":1328.01,"status":"ok","vs_main":{"label":"main","baseline":1328.03,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm1","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1130.95,"status":"ok","vs_main":{"label":"main","baseline":1192.95,"ratio":0.948,"delta_pct":-5.2},"regression":true,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm1","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":48.61,"status":"ok","vs_main":{"label":"main","baseline":48.59,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_atomic","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1354.96,"status":"ok","vs_main":{"label":"main","baseline":1352.32,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_atomic","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":48.67,"status":"ok","vs_main":{"label":"main","baseline":48.69,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_reduce","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1368.51,"status":"ok","vs_main":{"label":"main","baseline":1368.77,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_gemm2_reduce","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":45.91,"status":"ok","vs_main":{"label":"main","baseline":45.63,"ratio":1.006,"delta_pct":0.6},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s1","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":38.54,"status":"ok","vs_main":{"label":"main","baseline":38.38,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s1","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":75.12,"status":"ok","vs_main":{"label":"main","baseline":74.83,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s1","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":118.75,"status":"ok","vs_main":{"label":"main","baseline":118.38,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_atomic","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":37.25,"status":"ok","vs_main":{"label":"main","baseline":36.84,"ratio":1.011,"delta_pct":1.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_atomic","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":70.26,"status":"ok","vs_main":{"label":"main","baseline":69.06,"ratio":1.017,"delta_pct":1.7},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_atomic","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":128.26,"status":"ok","vs_main":{"label":"main","baseline":127.75,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_reduce","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":35.52,"status":"ok","vs_main":{"label":"main","baseline":35.49,"ratio":1.001,"delta_pct":0.1},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_reduce","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":64.51,"status":"ok","vs_main":{"label":"main","baseline":64.37,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"moe_w4a16_s2_reduce","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":118.1,"status":"ok","vs_main":{"label":"main","baseline":117.63,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":5.78,"status":"ok","vs_main":{"label":"main","baseline":5.797,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":5.706,"status":"ok","vs_main":{"label":"main","baseline":5.721,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T02:13:59Z","commit":"f423c0036ae5bea843b8e85a31fc92fb4fdbeee7","run_id":27317400244,"source":"ci","runner":"linux-flydsl-mi355-1","arch":"gfx950"},{"op":"fp8_gemm","shape":"128x4096x4096","dtype":"fp8","metric":"speedup","value":1.42,"status":"ok","regression":false,"extra":{"flydsl_us":78.7,"aiter_us":55.5,"baseline":"aiter"},"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x4096x4096","dtype":"fp8","metric":"speedup","value":1.75,"status":"ok","regression":false,"extra":{"flydsl_us":58.8,"aiter_us":33.5,"baseline":"aiter"},"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x8192x8192","dtype":"fp8","metric":"speedup","value":0.42,"status":"ok","regression":false,"extra":{"flydsl_us":68.8,"aiter_us":165.2,"baseline":"aiter"},"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"4096x4096x4096","dtype":"fp8","metric":"speedup","value":0.86,"status":"ok","regression":false,"extra":{"flydsl_us":728.8,"aiter_us":847.4,"baseline":"aiter"},"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.51,"status":"ok","vs_main":{"label":"main~1","baseline":0.51,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.508,"status":"ok","vs_main":{"label":"main~1","baseline":0.508,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.506,"status":"ok","vs_main":{"label":"main~1","baseline":0.507,"ratio":0.998,"delta_pct":-0.2},"regression":false,"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"1024x1024x1024","dtype":"bf16","metric":"speedup","value":1.38,"status":"ok","regression":false,"extra":{"flydsl_us":37.2,"aiter_us":27.0,"baseline":"aiter"},"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"2048x2048x2048","dtype":"bf16","metric":"speedup","value":1.05,"status":"ok","regression":false,"extra":{"flydsl_us":151.4,"aiter_us":144.8,"baseline":"aiter"},"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"256x256x256","dtype":"bf16","metric":"speedup","value":5.31,"status":"ok","regression":false,"extra":{"flydsl_us":38.6,"aiter_us":7.3,"baseline":"aiter"},"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"4096x4096x4096","dtype":"bf16","metric":"speedup","value":1.13,"status":"ok","regression":false,"extra":{"flydsl_us":1261.8,"aiter_us":1118.7,"baseline":"aiter"},"ts":"2026-06-11T06:35:50Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"flash_attn","shape":"B16S8192H16Hkv16D128_causal","dtype":"bf16","metric":"TFLOPS","value":268.4,"status":"ok","vs_main":{"label":"main~1","baseline":269.4,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B32S8192H8Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":271.2,"status":"ok","vs_main":{"label":"main~1","baseline":272.9,"ratio":0.994,"delta_pct":-0.6},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B4S8192H64Hkv64D128_causal","dtype":"bf16","metric":"TFLOPS","value":346.7,"status":"ok","vs_main":{"label":"main~1","baseline":349.1,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"flash_attn","shape":"B4S8192H64Hkv8D128_causal","dtype":"bf16","metric":"TFLOPS","value":348.5,"status":"ok","vs_main":{"label":"main~1","baseline":348.9,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"16x40960x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":119.91,"status":"ok","vs_main":{"label":"main~1","baseline":119.45,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"16x77824x5120_tile16x128x256","dtype":"fp8","metric":"TFLOPS","value":136.67,"status":"ok","vs_main":{"label":"main~1","baseline":136.41,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"256x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":305.28,"status":"ok","vs_main":{"label":"main~1","baseline":303.93,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1361.72,"status":"ok","vs_main":{"label":"main~1","baseline":1367.03,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"5120x5120x8320_tile64x256x128","dtype":"bf16","metric":"TFLOPS","value":687.64,"status":"ok","vs_main":{"label":"main~1","baseline":689.93,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"512x2112x7168_tile64x64x256","dtype":"fp8","metric":"TFLOPS","value":487.63,"status":"ok","vs_main":{"label":"main~1","baseline":488.33,"ratio":0.999,"delta_pct":-0.1},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp8","metric":"TFLOPS","value":1419.07,"status":"ok","vs_main":{"label":"main~1","baseline":1435.4,"ratio":0.989,"delta_pct":-1.1},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x128","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile128x256x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile64x128x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"8192x8192x8192_tile64x256x256","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"fp8","metric":"TFLOPS","value":1465.88,"status":"ok","vs_main":{"label":"main~1","baseline":1484.92,"ratio":0.987,"delta_pct":-1.3},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int8","metric":"TFLOPS","value":1472.14,"status":"ok","vs_main":{"label":"main~1","baseline":1478.59,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm","shape":"9728x8192x8320_tile64x256x128","dtype":"int4","metric":"TFLOPS","value":1332.17,"status":"ok","vs_main":{"label":"main~1","baseline":1328.83,"ratio":1.003,"delta_pct":0.3},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"256x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":266.39,"status":"ok","vs_main":{"label":"main~1","baseline":264.26,"ratio":1.008,"delta_pct":0.8},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"5120x5120x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1196.06,"status":"ok","vs_main":{"label":"main~1","baseline":1193.52,"ratio":1.002,"delta_pct":0.2},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"512x2112x7168_tile64x64x256_2tg","dtype":"fp8","metric":"TFLOPS","value":439.8,"status":"ok","vs_main":{"label":"main~1","baseline":437.88,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1167.2,"status":"ok","vs_main":{"label":"main~1","baseline":1153.11,"ratio":1.012,"delta_pct":1.2},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"fp8","metric":"TFLOPS","value":1400.7,"status":"ok","vs_main":{"label":"main~1","baseline":1406.63,"ratio":0.996,"delta_pct":-0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_async","shape":"9728x8192x8320_tile128x256x128_2tg","dtype":"int8","metric":"TFLOPS","value":1374.73,"status":"ok","vs_main":{"label":"main~1","baseline":1368.66,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x128_2tg","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"gemm_fp4_async","shape":"8192x8192x8192_tile128x256x256_2tg","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":4.091,"status":"ok","vs_main":{"label":"main~1","baseline":4.132,"ratio":0.99,"delta_pct":-1.0},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"mla","shape":"B32C8192","dtype":"fp8","metric":"TFLOPS","value":698.15,"status":"ok","vs_main":{"label":"main~1","baseline":700.56,"ratio":0.997,"delta_pct":-0.3},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t1024-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t2048-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t4096-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t512-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_a8w4","shape":"t8192-d3072x3072-e128k4","dtype":"a8w4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t128-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t128-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t16384-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t2048-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t2048-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t32768-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t32768-d7168x256-e257k9","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_fp4","shape":"t8192-d7168x2048-e32k8","dtype":"fp4","metric":"TFLOPS","status":"skip","regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm1","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":641.29,"status":"ok","vs_main":{"label":"main~1","baseline":647.61,"ratio":0.99,"delta_pct":-1.0},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm1","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":34.75,"status":"ok","vs_main":{"label":"main~1","baseline":34.99,"ratio":0.993,"delta_pct":-0.7},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_atomic","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":1037.5,"status":"ok","vs_main":{"label":"main~1","baseline":1072.91,"ratio":0.967,"delta_pct":-3.3},"regression":true,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_atomic","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":32.07,"status":"ok","vs_main":{"label":"main~1","baseline":32.45,"ratio":0.988,"delta_pct":-1.2},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_reduce","shape":"t32768-d8192x8192-e16k4","dtype":"fp8","metric":"TFLOPS","value":965.5,"status":"ok","vs_main":{"label":"main~1","baseline":999.29,"ratio":0.966,"delta_pct":-3.4},"regression":true,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_gemm2_reduce","shape":"t64-d6144x1024-e128k8","dtype":"fp8","metric":"TFLOPS","value":33.49,"status":"ok","vs_main":{"label":"main~1","baseline":32.86,"ratio":1.019,"delta_pct":1.9},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":27.67,"status":"ok","vs_main":{"label":"main~1","baseline":27.97,"ratio":0.989,"delta_pct":-1.1},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":52.9,"status":"ok","vs_main":{"label":"main~1","baseline":53.62,"ratio":0.987,"delta_pct":-1.3},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s1","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":102.98,"status":"ok","vs_main":{"label":"main~1","baseline":104.19,"ratio":0.988,"delta_pct":-1.2},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":27.4,"status":"ok","vs_main":{"label":"main~1","baseline":26.64,"ratio":1.029,"delta_pct":2.9},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":48.85,"status":"ok","vs_main":{"label":"main~1","baseline":49.57,"ratio":0.985,"delta_pct":-1.5},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_atomic","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":89.32,"status":"ok","vs_main":{"label":"main~1","baseline":88.94,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t128-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":25.54,"status":"ok","vs_main":{"label":"main~1","baseline":25.22,"ratio":1.013,"delta_pct":1.3},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t256-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":45.55,"status":"ok","vs_main":{"label":"main~1","baseline":44.77,"ratio":1.017,"delta_pct":1.7},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"moe_w4a16_s2_reduce","shape":"t512-d7168x256-e384k8","dtype":"int4_bf16","metric":"TFLOPS","value":80.73,"status":"ok","vs_main":{"label":"main~1","baseline":80.44,"ratio":1.004,"delta_pct":0.4},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":4.182,"status":"ok","vs_main":{"label":"main~1","baseline":4.244,"ratio":0.985,"delta_pct":-1.5},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":3.936,"status":"ok","vs_main":{"label":"main~1","baseline":3.937,"ratio":1.0,"delta_pct":-0.0},"regression":false,"ts":"2026-06-11T07:27:14Z","commit":"553a956c672f457dcb075af484b5bef415365894","pr":673,"run_id":27327956458,"source":"ci","runner":"linux-flydsl-mi325-1","arch":"gfx942"},{"op":"fp8_gemm","shape":"128x4096x4096","dtype":"fp8","metric":"speedup","value":1.12,"status":"ok","regression":false,"extra":{"flydsl_us":55.0,"aiter_us":49.1,"baseline":"aiter"},"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x4096x4096","dtype":"fp8","metric":"speedup","value":1.99,"status":"ok","regression":false,"extra":{"flydsl_us":54.6,"aiter_us":27.5,"baseline":"aiter"},"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"32x8192x8192","dtype":"fp8","metric":"speedup","value":0.52,"status":"ok","regression":false,"extra":{"flydsl_us":85.1,"aiter_us":165.3,"baseline":"aiter"},"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"fp8_gemm","shape":"4096x4096x4096","dtype":"fp8","metric":"speedup","value":0.88,"status":"ok","regression":false,"extra":{"flydsl_us":740.9,"aiter_us":845.9,"baseline":"aiter"},"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"layernorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.51,"status":"ok","vs_main":{"label":"main","baseline":0.51,"ratio":1.0,"delta_pct":0.0},"vs_tag":{"tag":"v0.2.0.dev645","baseline":0.51,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"rmsnorm","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.508,"status":"ok","vs_main":{"label":"main","baseline":0.509,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0.dev645","baseline":0.508,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"softmax","shape":"32768x8192","dtype":"bf16","metric":"TB/s","value":0.506,"status":"ok","vs_main":{"label":"main","baseline":0.507,"ratio":0.998,"delta_pct":-0.2},"vs_tag":{"tag":"v0.2.0.dev645","baseline":0.506,"ratio":1.0,"delta_pct":0.0},"regression":false,"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"1024x1024x1024","dtype":"bf16","metric":"speedup","value":1.47,"status":"ok","regression":false,"extra":{"flydsl_us":42.2,"aiter_us":28.7,"baseline":"aiter"},"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"2048x2048x2048","dtype":"bf16","metric":"speedup","value":1.04,"status":"ok","regression":false,"extra":{"flydsl_us":156.1,"aiter_us":150.1,"baseline":"aiter"},"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"256x256x256","dtype":"bf16","metric":"speedup","value":5.17,"status":"ok","regression":false,"extra":{"flydsl_us":42.3,"aiter_us":8.2,"baseline":"aiter"},"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"},{"op":"wmma_gemm","shape":"4096x4096x4096","dtype":"bf16","metric":"speedup","value":1.13,"status":"ok","regression":false,"extra":{"flydsl_us":1259.3,"aiter_us":1113.1,"baseline":"aiter"},"ts":"2026-06-11T07:49:53Z","commit":"39928e4d5af484fd9d567da61a7e2ea7de1b9191","pr":674,"run_id":27330797353,"source":"ci","runner":"linux-flydsl-navi-2","arch":"gfx1201"}]} | |||
There was a problem hiding this comment.
all histroy data here? use git artifact to store?
There was a problem hiding this comment.
Good catch — and no, the full history isn't meant to live in the tree. What's committed under data/ is only a first-paint seed; the real store is already out-of-tree on the orphan ci-dashboard-data branch (our analog of ATOM's data.js on gh-pages) — machine-written by ci-dashboard-ingest.yml, never hand-edited. app.js fetches that branch at runtime and always prefers it; the seed only renders if the branch is unreachable (first load, or a fork before its first ingest).
You're right that the seed had drifted into being the whole dataset, which makes it read like the store. Fixed in 6107b2f1: trimmed it to a single most-recent snapshot per series — history.json 589 → 169 records, 233 KB → 62 KB, no history depth (runs.json 25 → 10) — and added a "note" field on each file spelling out that history lives on the branch. So the in-tree bytes are now a tiny fallback, and the "git artifact" you're pointing at is the ci-dashboard-data branch.
|
https://github.com/ROCm/ATOM/tree/main/.github/dashboard follow this folders and styles? |
Align with the other ROCm dashboards (ROCm/ATOM/.github/dashboard): - Relocate ci-dashboard/ -> .github/dashboard/. The served URL stays /ci-dashboard (docs.yml still bundles the folder into the docs Pages artifact), so no Pages-setting change and no external links break. - Slim the committed data to a small seed snapshot: one most-recent sample per series, no history depth (history.json 589->169 records, 233KB->62KB; runs.json 25->10). The full, growing history is not committed -- it lives out-of-tree on the ci-dashboard-data branch, which app.js always prefers over the seed. Each seed file carries a "note" saying so. - Repath the ingest workflow, docs bundle step, root README banner/link, schema.md, README, and the footer; document the seed-vs-branch split. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
@coderfeli done — moved the dashboard to The layout now mirrors ATOM's model:
One piece I can't finish without you — serving. ATOM's Pages serves the On styles — did you mean the visual look or the single-file packaging? We split |
|
@jhinpan Thanks. Does it mean we don't need to merge this pr but create a new one to main that points link to this branch? |
Yeah, we do still need to merge it — the "just link to a branch" route can't actually serve this dashboard. Two reasons: The page only goes live from The auto-refresh only runs from One thing worth clearing up, since I think that's the worry: merging doesn't put any dashboard data into So it's really just merging two small files. Once the first Fly DSL test finishes after merge, the data branch and the live page come up on their own — and that's the one part we can only validate once it's on |
CI Performance Dashboard →
rocm.github.io/FlyDSL/ci-dashboardEvery PR runs the benchmark matrix on three real GPUs (
gfx950/gfx942/gfx1201), and the "Check benchmark performance (current vs main / vs tag)" step already computes per‑kernel regressions. The problem: those numbers only ever land in the job logs. Catching a regression today means knowing which run, opening the right job, and reading a wall of text.This adds a static dashboard built around the one question a maintainer opens it for — did main regress, which kernel, how much — with the answer on the landing page.
Vanilla HTML/CSS/JS + a vendored Chart.js — no build step, no framework.
Four views
main, then each regressing kernel with a sparkline.main. The merge‑gating view.main.Noise‑aware, not just a fixed gate
The headline count isn't a naïve "−3% somewhere." A drop only counts as real when it exceeds the kernel's own run‑to‑run noise —
mainmean ± Kσ over recent main runs — falling back to the fixed −3% gate when there aren't enough samples (and the UI says which is in effect). On the current data that turns ~6 raw regressions into 2 real ones: the memory‑bound norms wobble into "watch", while tighter kernels likemoe_gemm1/hgemmare flagged. Trends draws the band; a noise‑aware toggle exposes the model.How it works (no Pages‑setting change)
The page ships inside the existing docs Pages deploy (
docs.ymlgains onecpstep), so it appears at/ci-dashboardwith zero GitHub Pages configuration change. The data is regenerated by a scheduled workflow onto an orphanci-dashboard-databranch the page fetches live —mainhistory and the Sphinx build stay untouched.Arch ↔ runner (the chips reflect the actual CI boxes):
gfx950= MI355X (CDNA4),gfx942= MI325X (CDNA3),gfx1201= R9700 (RDNA4).What's here
ci-dashboard/— the SPA, a stdlib‑only parser + ingest (ingest/parse_bench.py,ingest/ingest.py) with a unit test, seed data, schema doc, banner asset.github/workflows/ci-dashboard-ingest.yml— cron +workflow_runingestion (defaultGITHUB_TOKEN:actions:readfor logs,contents:writefor the data branch)docs.yml/docs/index.rst— bundle the page and link itREADME.md— a CI Performance Dashboard banner + badges entryVerification
layernorm −7.0%,moe_w4a16_s2_reduce +8.8%,gemm +1.9%TFLOPS), including themain~Nfallback baselines. Covered byci-dashboard/ingest/test_parse_bench.py(pure‑Python, no GPU/network); passes the repo'sblack+ruffgate.Notes for review
ci-dashboard-databranch is the analogue of ATOM'sgh-pagesdata store; bot‑written, never edited by hand. If you'd prefer the more ATOM‑faithfulbenchmark-action/github-action-benchmark+gh-pages‑branch model, that's a clean follow‑up (it needs the Pages source switched to a branch, which is why this avoids it).main/main~N); SHA‑level traceability is a small ingest follow‑up.CFG.repo/CFG.dataBranch(top ofapp.js) at their own org.