Skip to content

Commit fa82164

Browse files
authored
Merge pull request #1258 from rust-lang/compare-profile
Use a separate column for benchmark profile in compare page
2 parents a2f9b1b + adcf6f9 commit fa82164

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

site/static/compare.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,8 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
930930
<table v-else class="benches compare">
931931
<thead>
932932
<tr>
933-
<th>Benchmark & Profile</th>
933+
<th>Benchmark</th>
934+
<th>Profile</th>
934935
<th>Scenario</th>
935936
<th>% Change</th>
936937
<th>
@@ -951,7 +952,8 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
951952
<tbody>
952953
<template v-for="testCase in cases">
953954
<tr>
954-
<td>{{ testCase.benchmark }} {{ testCase.profile }}</td>
955+
<td>{{ testCase.benchmark }}</td>
956+
<td>{{ testCase.profile }}</td>
955957
<td>{{ testCase.scenario }}</td>
956958
<td>
957959
<a v-bind:href="percentLink(commitB, commitA, testCase)">

0 commit comments

Comments
 (0)