forked from jeremysinger/MaRIONet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfhpc.html
More file actions
137 lines (102 loc) · 4.57 KB
/
fhpc.html
File metadata and controls
137 lines (102 loc) · 4.57 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
133
134
135
136
137
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MaRIONet : FHPC </title>
<link href="bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/purecss@0.6.1/build/pure-min.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="https://purecss.io/combo/1.18.13?/css/layouts/side-menu-old-ie.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="https://purecss.io/combo/1.18.13?/css/layouts/side-menu.css">
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div id="layout">
<!-- Menu toggle -->
<a href="#menu" id="menuLink" class="menu-link">
<!-- random icon -->
<span></span>
</a>
<div id="menu">
<div class="pure-menu">
<a class="pure-menu-heading" href="#">Menu</a>
<ul class="pure-menu-list">
<li class="pure-menu-item">
<a href="index.html" class="pure-menu-link">Home</a>
</li>
<li class="pure-menu-item">
<a href="http://gow.epsrc.ac.uk/NGBOViewGrant.aspx?GrantRef=EP/P006434/1" class="pure-menu-link">About</a>
</li>
<li class="pure-menu-item" class="menu-item-divided pure-menu-selected">
<a href="form.html" class="pure-menu-link">Register</a>
</li>
<li class="pure-menu-item" class="menu-item-divided pure-menu-selected">
<a href="members.html" class="pure-menu-link">Members</a>
</li>
<li class="pure-menu-item" class="menu-item-divided pure-menu-selected">
<a href="events.html" class="pure-menu-link">Events</a>
</li>
<li class="pure-menu-item" class="menu-item-divided pure-menu-selected">
<a href="joining.html" class="pure-menu-link">Joining</a>
</li>
<li class="pure-menu-item">
<a href="contact.html" class="pure-menu-link">Contact</a>
</li>
</ul>
</div>
</div>
<div id="main">
<div class="header">
<img class="pure-img" src="marionet_logo.png" alt="marionet logo">
</div>
<div class="content">
<h2 class="content-subhead">Functional High-Performance Computing</h2>
<h4>Thursday 7th September 2017</h4>
<h4>University of Oxford</h4>
<p>
The 2017 Workshop on <a href="https://icfp17.sigplan.org/track/FHPC-2017-papers">Functional High-Performance Computing (FHPC’17)</a> was a great success with 6 research presentations, 3 demos, and a panel session. It attracted between 40 and 60 attendees through the day. Simon Marlow gave a great invited talk on the use of Haskell for abuse detecting at Facebook: a latency-critical operation. We gratefully acknowledge the support of <a href="http://manycore.org.uk/">MaRIONet</a> and the <a href="http://www.hiperfit.dk/ ">Hiperfit research centre</a>
</div> <!-- content -->
</div> <!-- main -->
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Custom Theme JavaScript -->
<script>
// Closes the sidebar menu
$("#menu-close").click(function(e) {
e.preventDefault();
$("#sidebar-wrapper").toggleClass("active");
});
// Opens the sidebar menu
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#sidebar-wrapper").toggleClass("active");
});
// Scrolls to the selected menu item on the page
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
<script src="https://purecss.io/combo/1.18.13?/js/ui.js"></script>
</body>
</html>