Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/lib/dashboard/app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const CHART_DEFS = [
{ metric: 'graph.loadMs', title: 'Graph load time', unit: 'ms', budget: null },
{ metric: 'graph.avgTickMs', title: 'Sim tick cost', unit: 'ms', budget: 8 },
{ metric: 'graph.queryP95Ms', title: 'Query p95 latency', unit: 'ms', budget: 800 },
{ metric: 'graph.driftPx', title: 'Layout drift', unit: 'px', budget: 25 },
{ metric: 'graph.driftPx', title: 'Layout wander vs size (scale sweep)', unit: 'px' },
{ metric: 'physics.settleSeconds', title: 'Physics settle time', unit: 's' },
{ metric: 'vlm.score', title: 'VLM visual score', unit: 'score' },
];
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/reporting/generate-perf-report.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ ${lineChart('Interaction FPS vs size (drag)', 'interactionFps', { unit: '' })}
${lineChart('Initial load vs size', 'loadMs', { unit: 'ms' })}
${lineChart('Avg simulation tick vs size', 'avgTickMs', { unit: 'ms', budget: 8 })}
${lineChart('Settle time vs size', 'settleMs', { unit: 'ms' })}
${lineChart('Layout drift vs size', 'rmsFromSavedPx', { unit: 'px', budget: 25 })}
${lineChart('Layout wander vs size (seed displacement)', 'rmsFromSavedPx', { unit: 'px' })}
${lineChart('Query p95 latency vs size', 'queryP95Ms', { unit: 'ms', budget: 800 })}
</div>
<h2>All metrics</h2>
Expand Down
Loading