Skip to content

Commit 87e29c0

Browse files
committed
scope clarify
1 parent f2e9926 commit 87e29c0

File tree

2 files changed

+130
-107
lines changed

2 files changed

+130
-107
lines changed

docs/index.html

Lines changed: 94 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,100 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Benching PIR (WIP)</title>
7-
<link rel="preconnect" href="https://fonts.googleapis.com">
8-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9-
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
10-
<link rel="stylesheet" href="style.css">
11-
<script>
12-
// Backward-compat redirect: old hash URLs → subpages
13-
(function () {
14-
var defined = {
15-
'overview': 'reported/',
16-
'communication': 'reported/communication/',
17-
'server-perf': 'reported/server/',
18-
'client-cost': 'reported/client/',
19-
'offline-storage': 'reported/offline/',
20-
'pareto': 'reported/pareto/',
21-
'pareto-comm-server': 'reported/pareto/#pareto-comm-server',
22-
'pareto-comm-client': 'reported/pareto/#pareto-comm-client',
23-
'pareto-comm-storage': 'reported/pareto/#pareto-comm-storage',
24-
'pareto-server-client': 'reported/pareto/#pareto-server-client',
25-
'pareto-3d-comm': 'reported/pareto/#pareto-3d-comm',
26-
'pareto-3d-server': 'reported/pareto/#pareto-3d-server',
27-
'catalog': 'misc/#catalog',
28-
'references': 'misc/#references'
29-
};
30-
var h = location.hash.replace('#', '');
31-
if (h && defined[h]) {
32-
location.replace(defined[h]);
33-
}
34-
})();
35-
</script>
36-
</head>
37-
<body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Benching PIR (WIP)</title>
7+
<link rel="preconnect" href="https://fonts.googleapis.com" />
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9+
<link
10+
href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap"
11+
rel="stylesheet"
12+
/>
13+
<link rel="stylesheet" href="style.css" />
14+
<script>
15+
// Backward-compat redirect: old hash URLs → subpages
16+
(function () {
17+
var defined = {
18+
overview: "reported/",
19+
communication: "reported/communication/",
20+
"server-perf": "reported/server/",
21+
"client-cost": "reported/client/",
22+
"offline-storage": "reported/offline/",
23+
pareto: "reported/pareto/",
24+
"pareto-comm-server": "reported/pareto/#pareto-comm-server",
25+
"pareto-comm-client": "reported/pareto/#pareto-comm-client",
26+
"pareto-comm-storage":
27+
"reported/pareto/#pareto-comm-storage",
28+
"pareto-server-client":
29+
"reported/pareto/#pareto-server-client",
30+
"pareto-3d-comm": "reported/pareto/#pareto-3d-comm",
31+
"pareto-3d-server": "reported/pareto/#pareto-3d-server",
32+
catalog: "misc/#catalog",
33+
references: "misc/#references",
34+
};
35+
var h = location.hash.replace("#", "");
36+
if (h && defined[h]) {
37+
location.replace(defined[h]);
38+
}
39+
})();
40+
</script>
41+
</head>
42+
<body>
43+
<!-- Hamburger (mobile) -->
44+
<button class="hamburger" aria-label="Menu">&#9776;</button>
45+
<div class="sidebar-overlay"></div>
3846

39-
<!-- Hamburger (mobile) -->
40-
<button class="hamburger" aria-label="Menu">&#9776;</button>
41-
<div class="sidebar-overlay"></div>
47+
<!-- Sidebar -->
48+
<aside class="sidebar">
49+
<a href="./" class="sidebar-title">Benching PIR (WIP)</a>
50+
<nav id="sidebar-nav"></nav>
51+
</aside>
4252

43-
<!-- Sidebar -->
44-
<aside class="sidebar">
45-
<a href="./" class="sidebar-title">Benching PIR (WIP)</a>
46-
<nav id="sidebar-nav"></nav>
47-
</aside>
53+
<!-- Main Content -->
54+
<main class="content">
55+
<section>
56+
<h2>Benching PIR (WIP)</h2>
57+
<p class="desc">
58+
Performance data for single-server Private Information
59+
Retrieval schemes.
60+
</p>
4861

49-
<!-- Main Content -->
50-
<main class="content">
51-
<section>
52-
<h2>Benching PIR (WIP)</h2>
53-
<p class="desc">
54-
Performance data for single-server Private Information Retrieval schemes.
55-
</p>
62+
<div class="section-cards">
63+
<a href="reported/" class="section-card">
64+
<h3>Reported</h3>
65+
<p>
66+
Paper-reported benchmarks across 31 single-server
67+
PIR schemes, organized by communication,
68+
server/client performance, and Pareto frontiers.
69+
</p>
70+
<span class="card-status">31 schemes</span>
71+
</a>
72+
<a href="replicated/" class="section-card">
73+
<h3>Replicated</h3>
74+
<p>
75+
Re-running paper benchmarks on controlled hardware
76+
to verify reported numbers.
77+
</p>
78+
<span class="card-status coming-soon-label"
79+
>Coming soon..</span
80+
>
81+
</a>
82+
<a href="standardized/" class="section-card">
83+
<h3>Standardized</h3>
84+
<p>
85+
Head-to-head GPU-focused comparisons across 1 GB, 8
86+
GB, and 32 GB databases with 32 B, 64 B, and 256 B
87+
entries.
88+
</p>
89+
<span class="card-status coming-soon-label"
90+
>Coming soon..</span
91+
>
92+
</a>
93+
</div>
94+
</section>
95+
</main>
5696

57-
<div class="section-cards">
58-
<a href="reported/" class="section-card">
59-
<h3>Reported</h3>
60-
<p>Paper-reported benchmarks across 31 single-server PIR schemes, organized by communication, server/client performance, and Pareto frontiers.</p>
61-
<span class="card-status">31 schemes</span>
62-
</a>
63-
<a href="replicated/" class="section-card">
64-
<h3>Replicated</h3>
65-
<p>Re-running paper benchmarks on controlled hardware to verify reported numbers.</p>
66-
<span class="card-status coming-soon-label">Coming soon..</span>
67-
</a>
68-
<a href="standardized/" class="section-card">
69-
<h3>Standardized</h3>
70-
<p>Head-to-head comparisons across 1 GB, 8 GB, and 32 GB databases with 32 B, 64 B, and 256 B entries.</p>
71-
<span class="card-status coming-soon-label">Coming soon..</span>
72-
</a>
73-
</div>
74-
</section>
75-
</main>
76-
77-
<script src="nav.js"></script>
78-
<script src="script.js"></script>
79-
</body>
97+
<script src="nav.js"></script>
98+
<script src="script.js"></script>
99+
</body>
80100
</html>

docs/standardized/index.html

Lines changed: 36 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,41 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Benching PIR (WIP) — Standardized</title>
7-
<link rel="preconnect" href="https://fonts.googleapis.com">
8-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9-
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
10-
<link rel="stylesheet" href="../style.css">
11-
</head>
12-
<body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Benching PIR (WIP) — Standardized</title>
7+
<link rel="preconnect" href="https://fonts.googleapis.com" />
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9+
<link
10+
href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap"
11+
rel="stylesheet"
12+
/>
13+
<link rel="stylesheet" href="../style.css" />
14+
</head>
15+
<body>
16+
<!-- Hamburger (mobile) -->
17+
<button class="hamburger" aria-label="Menu">&#9776;</button>
18+
<div class="sidebar-overlay"></div>
1319

14-
<!-- Hamburger (mobile) -->
15-
<button class="hamburger" aria-label="Menu">&#9776;</button>
16-
<div class="sidebar-overlay"></div>
20+
<!-- Sidebar -->
21+
<aside class="sidebar">
22+
<a href="../" class="sidebar-title">Benching PIR (WIP)</a>
23+
<nav id="sidebar-nav"></nav>
24+
</aside>
1725

18-
<!-- Sidebar -->
19-
<aside class="sidebar">
20-
<a href="../" class="sidebar-title">Benching PIR (WIP)</a>
21-
<nav id="sidebar-nav"></nav>
22-
</aside>
26+
<!-- Main Content -->
27+
<main class="content">
28+
<section>
29+
<h2>Standardized Benchmarks</h2>
30+
<p class="desc">
31+
Head-to-head GPU-focused comparisons across 1 GB, 8 GB, and
32+
32 GB databases with 32 B, 64 B, and 256 B entries.
33+
</p>
34+
<div class="coming-soon-msg">Coming soon..</div>
35+
</section>
36+
</main>
2337

24-
<!-- Main Content -->
25-
<main class="content">
26-
<section>
27-
<h2>Standardized Benchmarks</h2>
28-
<p class="desc">
29-
Head-to-head comparisons across 1 GB, 8 GB, and 32 GB databases with 32 B, 64 B, and 256 B entries.
30-
</p>
31-
<div class="coming-soon-msg">Coming soon..</div>
32-
</section>
33-
</main>
34-
35-
<script src="../nav.js"></script>
36-
<script src="../script.js"></script>
37-
</body>
38+
<script src="../nav.js"></script>
39+
<script src="../script.js"></script>
40+
</body>
3841
</html>

0 commit comments

Comments
 (0)