-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
132 lines (114 loc) · 4.45 KB
/
about.html
File metadata and controls
132 lines (114 loc) · 4.45 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
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>FPTalks - About</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="fpbench.css">
</head>
<body>
<header>
<a href='.'>
<img src='img/logo.png' height='150' alt='FPTalks Logo' />
<h1>FPTalks</h1>
</a>
<p>Numerics community meetings and resources</p>
<ul>
<li><a href="index.html">Events</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="community.html">Tools</a></li>
<li><a href="https://groups.google.com/a/fpbench.org/g/fpbench">Mailing List</a></li>
<li><a href="about.html">About</a></li>
</ul>
</header>
<h2>About FPTalks</h2>
<h3>Numerics community meetings and resources</h3>
<p>
FPTalks is a community-led initiative advancing floating-point research.
At the center of our work is a monthly virtual seminar series that brings
together researchers, practitioners, and tool developers from across academia
and industry to share the latest work in floating-point analysis, optimization,
verification, and numerics education.
</p>
<p>
We aim to build a collaborative community by organizing
events, curating technical resources, and developing shared
infrastructure for reproducible floating-point research.
FPTalks also supports
long-term growth in the field by developing educational materials and
facilitating mentorship connections across academia, industry, and national
labs.
</p>
<p>
Whether you're tackling NaNs in GPU kernels, designing compiler passes for
mixed-precision computation, or teaching undergraduates about rounding error,
we invite you to join the conversation!
</p>
<h2>Community Meetings</h2>
<ul>
<li><a href='https://fptalks.org'>FPTalks Seminar</a></li>
<li><a href='https://fptalks.org/talks'>Annual Workshop</a></li>
</ul>
<h2>Staying in Touch</h2>
<ul>
<li><a href='https://fptalks.org/subscribe'>Join our mailing list</a></li>
<li><a href='https://fptalks.org/nominate'>Sign up to present</a></li>
</ul>
<!--
<p>
FPBench is committed to
advancing floating-point research
by providing a standard, unified platform for
benchmarks, tools, and practices.
Central to our mission is
shared infrastructure for reproducible research in
floating-point analysis, verification, and optimization.
FPBench fosters a collaborative community,
emphasizing open dialogue, shared resources, and collective growth.
To help achieve these goals long term,
FPBench members also develop and curate educational materials
for training the next generation
of scientists and engineers in numerical computing.
FPBench strives to facilitate research relationships
by creating spaces to connect, collaborate, and contribute,
thus co-creating a vibrant ecosystem driven by
mutual respect and shared purpose.
</p>
-->
<h2>Advisory Group</h2>
<ul>
<li><a href='https://ianbriggs.dev/'>Ian Briggs</a>, Amazon Web Services</li>
<li><a href='https://www.linkedin.com/in/bill-zorn-265872141/'>Bill Zorn</a>, Intel</li>
<li><a href='https://www.jmu.edu/cise/people/faculty/lam-michael.shtml'>Mike Lam</a>, James Madison University</li>
<li><a href='https://avolkova.org/'>Anastasia Volkova</a>, INRIA</li>
<li><a href='https://www.linkedin.com/in/theo-drane-7753934/'>Theo Drane</a>, AMD</li>
<li><a href='https://people.cs.rutgers.edu/~santosh.nagarakatte/'>Santosh Nagarakatte</a>, Rutgers University</li>
<li><a href='https://ztatlock.net/'>Zachary Tatlock</a>, University of Washington</li>
<li><a href='https://pavpanchekha.com/'>Pavel Panchekha</a>, University of Utah</li>
</ul>
<!--
<h2>Contributors</h2>
<ul>
<li>Adobe Research</li>
<li>Amazon Web Services</li>
<li>Cornell University</li>
<li>City University of London</li>
<li>Google</li>
<li>INRIA</li>
<li>Imperial College London</li>
<li>Intel</li>
<li>James Madison University</li>
<li>Lawrence Livermore National Laboratory</li>
<li>Meta</li>
<li>NASA Langley Research Center</li>
<li>Rutgers University</li>
<li>Sandia National Labs</li>
<li>University of California, Davis</li>
<li>University of Iowa</li>
<li>University of Utah</li>
<li>University of Washington</li>
<li>Yale University</li>
</ul>
-->
</body>
</html>