Skip to content

Commit 4a008ea

Browse files
committed
drop task count from multi-workload tradeoff tooltip
1 parent 2562688 commit 4a008ea

1 file changed

Lines changed: 1 addition & 29 deletions

File tree

src/components/sections/findings/F6_MultiWorkloadTradeoff.svelte

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
model: b.model,
4343
global_speedup: b.global_sum / b.n,
4444
worst_workload_speedup: b.worst_sum / b.n,
45-
n_tasks: b.n,
4645
is_expert: b.is_expert
4746
}));
4847
})();
@@ -80,14 +79,7 @@
8079
yTickCount={5}
8180
xBetterDir="higher"
8281
caption="Global speedup (x) vs. worst per-workload speedup (y) for each agent-model configuration."
83-
>
84-
<svelte:fragment slot="tooltip-extra" let:row>
85-
<div class="tt-row">
86-
<dt>Tasks</dt>
87-
<dd>{row.n_tasks}</dd>
88-
</div>
89-
</svelte:fragment>
90-
</LegendScatter>
82+
/>
9183
{/if}
9284

9385
<PaperFigureCaption
@@ -124,24 +116,4 @@
124116
color: var(--text-muted);
125117
line-height: 1.55;
126118
}
127-
128-
.tt-row {
129-
display: flex;
130-
justify-content: space-between;
131-
gap: 16px;
132-
}
133-
134-
.tt-row dt {
135-
color: var(--text-muted);
136-
text-transform: uppercase;
137-
font-size: 0.68rem;
138-
letter-spacing: 0.05em;
139-
}
140-
141-
.tt-row dd {
142-
margin: 0;
143-
font-variant-numeric: tabular-nums;
144-
font-family: var(--mono);
145-
font-size: 0.82rem;
146-
}
147119
</style>

0 commit comments

Comments
 (0)