Skip to content
Open
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
43 changes: 27 additions & 16 deletions gravitons/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
}

.selectors-container {
padding: 2rem 0 2rem 0;
padding: 1rem 0 2rem 0;
user-select: none;
}

Expand All @@ -111,6 +111,7 @@
color: var(--selector-text-color);
border: 0.2rem solid var(--background-color);
border-radius: 0.5rem;
cursor: pointer;
}

.selector-active {
Expand Down Expand Up @@ -164,6 +165,16 @@
white-space: nowrap;
}

#summary-table {
width: 100%;
height: 45vh;
overflow-y: scroll;
scrollbar-gutter: stable;
padding-right: 1rem;
margin-top: 1.5rem;
margin-bottom: 1rem;
}

th {
padding-bottom: 0.5rem;
}
Expand Down Expand Up @@ -358,6 +369,21 @@ <h1>ClickHouse Hardware Benchmark</h1>
<a href="https://github.com/ClickHouse/ClickBench/">Source</a> | <a href="https://clickhouse.com/docs/en/operations/performance-test/">Add a New Result</a> | <a href="https://github.com/ClickHouse/ClickBench/">Report Mistake</a> | <a href="https://benchmark.clickhouse.com/">Benchmark For Analytical DBMS</a> | <a href="https://benchmark.clickhouse.com/versions/">Versions Benchmark</a>
</div>

<table id="summary-table" class="stick-left comparison">
<thead>
<tr>
<th class="summary-name">
Machine
</th>
<th colspan="2">
Relative time (lower is better)
</th>
</tr>
</thead>
<tbody id="summary">
</tbody>
</table>

<table class="selectors-container stick-left">
<tr>
<th>Machine: </th>
Expand All @@ -380,21 +406,6 @@ <h1>ClickHouse Hardware Benchmark</h1>
</tr>
</table>

<table class="stick-left comparison">
<thead>
<tr>
<th class="summary-name">
Machine
</th>
<th colspan="2">
Relative time (lower is better)
</th>
</tr>
</thead>
<tbody id="summary">
</tbody>
</table>

<div id="nothing-selected" class="stick-left">Nothing selected</div>

<div class="stick-left comparison">
Expand Down
45 changes: 28 additions & 17 deletions hardware/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
}

.selectors-container {
padding: 2rem 0 2rem 0;
padding: 1rem 0 2rem 0;
user-select: none;
}

Expand All @@ -123,6 +123,7 @@
color: var(--selector-text-color);
border: 0.2rem solid var(--background-color);
border-radius: 0.5rem;
cursor: pointer;
}

.selector-active {
Expand Down Expand Up @@ -180,6 +181,16 @@
white-space: nowrap;
}

#summary-table {
width: 100%;
height: 45vh;
overflow-y: scroll;
scrollbar-gutter: stable;
padding-right: 1rem;
margin-top: 1.5rem;
margin-bottom: 1rem;
}

th {
padding-bottom: 0.5rem;
}
Expand Down Expand Up @@ -545,6 +556,22 @@ <h1>ClickHouse Hardware Benchmark</h1>
<a href="https://github.com/ClickHouse/ClickBench/">Source</a> | <a href="https://clickhouse.com/docs/en/operations/performance-test/">Add a New Result</a> | <a href="https://github.com/ClickHouse/ClickBench/">Report Mistake</a> | <a href="https://benchmark.clickhouse.com/">Benchmark For Analytical DBMS</a> | <a href="https://benchmark.clickhouse.com/versions/">Versions Benchmark</a>
</div>

<table id="summary-table" class="stick-left comparison">
<thead>
<tr>
<th class="summary-name">
Machine
</th>
<th colspan="2">
Relative time (lower is better).<br/>
<span id="scale_hint"></span>
</th>
</tr>
</thead>
<tbody id="summary">
</tbody>
</table>

<table class="selectors-container stick-left">
<tr>
<th>Machine: </th>
Expand All @@ -567,22 +594,6 @@ <h1>ClickHouse Hardware Benchmark</h1>
</tr>
</table>

<table class="stick-left comparison">
<thead>
<tr>
<th class="summary-name">
Machine
</th>
<th colspan="2">
Relative time (lower is better).<br/>
<span id="scale_hint"></span>
</th>
</tr>
</thead>
<tbody id="summary">
</tbody>
</table>

<div id="nothing-selected" class="stick-left">Nothing selected</div>

<div class="stick-left comparison">
Expand Down
Loading