-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (104 loc) · 2.84 KB
/
Copy pathindex.html
File metadata and controls
120 lines (104 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>intcomp</title>
<meta name="description" content="Intelligent Computing Laboratory">
<style>
:root {
--bg: #ffffff;
--fg: #1a1a1a;
--muted: #6b6b6b;
--rule: #e5e5e5;
--link: #1a4fd6;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #121212;
--fg: #e8e8e8;
--muted: #9a9a9a;
--rule: #2c2c2c;
--link: #7ea2ff;
}
}
*, *::before, *::after { box-sizing: border-box; }
body {
margin: 0;
padding: 4rem 1.5rem 6rem;
background: var(--bg);
color: var(--fg);
font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI",
"Helvetica Neue", Arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
main { max-width: 38rem; margin: 0 auto; }
h1 {
margin: 0 0 .35rem;
font-size: 1.9rem;
font-weight: 600;
letter-spacing: -.02em;
}
.tagline { margin: 0 0 3rem; color: var(--muted); }
h2 {
margin: 0 0 1.25rem;
font-size: .8rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .09em;
color: var(--muted);
}
section { margin-bottom: 3rem; }
.project {
padding-top: 1.25rem;
border-top: 1px solid var(--rule);
}
.project + .project { margin-top: 1.25rem; }
.project h3 { margin: 0 0 .3rem; font-size: 1.05rem; font-weight: 600; }
.project p { margin: 0 0 .6rem; color: var(--muted); }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.links {
display: flex;
flex-wrap: wrap;
gap: .4rem 1.1rem;
font-size: .92rem;
}
footer {
padding-top: 1.5rem;
border-top: 1px solid var(--rule);
font-size: .9rem;
color: var(--muted);
}
@media (max-width: 480px) {
body { padding: 2.5rem 1.25rem 4rem; font-size: 16px; }
h1 { font-size: 1.6rem; }
}
</style>
</head>
<body>
<main>
<h1>intcomp</h1>
<p class="tagline">Intelligent Computing Laboratory</p>
<section>
<h2>Projects</h2>
<div class="project">
<h3>TorchMorph</h3>
<p>
CUDA-accelerated, batch-parallel morphological operations and distance
transforms for PyTorch.
</p>
<div class="links">
<a href="/tm/">Documentation</a>
<a href="https://github.com/intcomp/torchmorph">GitHub</a>
<a href="https://arxiv.org/abs/2608.24738">arXiv</a>
</div>
</div>
</section>
<footer>
<!-- TODO: 联系方式 / 单位,不需要就删掉整个 footer -->
<a href="https://github.com/intcomp">github.com/intcomp</a>
</footer>
</main>
</body>
</html>