-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhipeac18.html
148 lines (110 loc) · 5.09 KB
/
hipeac18.html
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
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MaRIONet : RS4</title>
<link href="bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/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">HiPEAC 2018 Workshop</h2>
<h4>MaRIONet at the HiPEAC Conference 2018</h4>
<p>
The annual <a href="https://www.hipeac.net/2018/manchester/">HiPEAC conference</a> was held in Manchester, 22-24 January 2018.
We organized a MaRIONet <a href="https://www.hipeac.net/events/activities/7543/marionet/">workshop day</a> on <b>Wed 24 Jan</b>. Check out <a href="https://www.hipeac.net/events/activities/7543/marionet/">the HiPEAC website</a> for details.
Participants needed to <a href="https://www.hipeac.net/2018/manchester/register/">register for the HiPEAC conference</a> to attend our workshop day, which restricted our workshop size somewhat. Overall, around 25 people attended throughout the day.
</p>
<p>
The highlight event was a dragon's den style research competition, with volunteers giving five-minute pitches to a panel of (hypothetical) venture capitalists. A range of interesting ideas included supercomputing clusters on aircraft carriers, time-travelling microprocessors, anticipative Alexa ...
</p>
<p>
One workshop attendee commented: <em>"Well done on a really nice workshop at Hipeac. I was just able to attend the keynote and the dragon's den, but both were very unorthodox, interesting, informative, and entertaining! We could do with more events like these to liven up our conferences."</em>
</p>
</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>