-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrules.php
More file actions
197 lines (182 loc) · 6.41 KB
/
Copy pathrules.php
File metadata and controls
197 lines (182 loc) · 6.41 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?php $this->assign('title', 'Rules'); ?>
<nav id="breadcrumb">
<p>YOU ARE HERE</p>
<?php
$this->Breadcrumbs->add(__('HOME'), ['controller' => 'submissions', 'action' => 'latest']);
$this->Breadcrumbs->add(__('RULES'), ['controller' => 'pages', 'action' => 'display', 'rules']);
echo $this->Breadcrumbs->render([], ['separator' => ' / ']);
?>
</nav>
<div class="content">
<h2>The IO500 Foundation Steering Committee Rules - Version 2.0</h2>
<p>
The IO500 Steering Committee (hereafter "committee" or also referred to as the "board") is the operational group for the IO500 Foundation, a 501(c)3 public charity corporation in New Mexico, USA. The IO500 Foundation operates as a standards body seeking to support the improvement of high performance computing storage systems and to serve as a repository of detailed system information as a public research repository documenting large scale storage system evolution over time. To collect the data, the committee operates a twice annual competition coinciding with SC (November) and ISC (May). The committee consists of a small group, and optionally, sub-committees focused on particular activities. The committee manages all of the day to day operations, operates the competitions, and oversees the activities of any sub-committee(s).
</p>
<h3>Benchmark Execution and Submission Rules</h3>
<ul>
<li>
<b>
<?php
echo $this->Html->link(__('Submission'), [
'controller' => 'pages',
'action' => 'display',
'rules-submission'
]);
?>
</b>
</li>
<li>
<b>
<?php
echo $this->Html->link(__('SCC Submission'), [
'controller' => 'pages',
'action' => 'display',
'rules-scc-submission'
]);
?>
</b>
</li>
<li>
<b>
<?php
echo $this->Html->link(__('Submission Data Handling Policy'), [
'controller' => 'pages',
'action' => 'display',
'rules-data-handling'
]);
?>
</b>
</li>
</ul>
<h3>Steering Committee Rules</h3>
<ul>
<li>
<b>
<?php
echo $this->Html->link(__('Major Benchmark Change Request/Proposal'), [
'controller' => 'pages',
'action' => 'display',
'rules-benchmark'
]);
?>
</b>
</li>
</ul>
<ul>
<li>
<b>
<?php
echo $this->Html->link(__('Committee Size and Members'), [
'controller' => 'pages',
'action' => 'display',
'rules-committee'
]);
?>
</b>
</li>
<li>
<b>
<?php
echo $this->Html->link(__('Decision Process'), [
'controller' => 'pages',
'action' => 'display',
'rules-decision'
]);
?>
</b>
</li>
<li>
<b>
<?php
echo $this->Html->link(__('New Committee Member Process'), [
'controller' => 'pages',
'action' => 'display',
'rules-committee-member'
]);
?>
</b>
</li>
<li>
<b>
<?php
echo $this->Html->link(__('Public Facing Information Related Rules'), [
'controller' => 'pages',
'action' => 'display',
'rules-public'
]);
?>
</b>
</li>
<li>
<b>
<?php
echo $this->Html->link(__('Sub-Committees'), [
'controller' => 'pages',
'action' => 'display',
'rules-sub-committees'
]);
?>
</b>
</li>
</ul>
<h3>Community Policies</h3>
<ul>
<li>
<b>
<?php
echo $this->Html->link(__('Code of Conduct Policy'), [
'controller' => 'pages',
'action' => 'display',
'rules-code-of-conduct'
]);
?>
</b>
</li>
<li>
<b>
<?php
echo $this->Html->link(__('Messaging Policy'), [
'controller' => 'pages',
'action' => 'display',
'rules-messaging'
]);
?>
</b>
</li>
</ul>
</div>
<div class="content">
<h2>Current and Past Proposals</h2>
<p>
This is a list of all current and past proposals that have been reviewed by the Steering Committee and Community. All changes to the rules are goverened by the
<b>
<?php
echo $this->Html->link(__('Major Benchmark Change Request/Proposal.'), [
'controller' => 'pages',
'action' => 'display',
'rules-benchmark'
]);
?>
</b>
</p>
<ul>
<li>
<a href="https://docs.google.com/document/d/1zr88byIhNIhVXp6KN6v4zGB828oNs2LDZSbIj-3zGpc/edit?usp=sharing">Random Read Proposal (Pilot)</a>
</li>
<li>
<a href="/files/io500-reproducibility-proposal.pdf">Reproducibility Proposal (Incorporated)</a>
</li>
<li>
<a href="/files/io500-list-split-proposal.pdf">List Split Proposal (Incorporated)</a>
</li>
<li>
<a href="/files/io500-messaging-policy-proposal.pdf">Messaging Policy Proposal (Incorporated)</a>
</li>
<li>
<a href="/files/io500-submission-data-handling-policy-proposal.pdf">Submission Data Handling Policy Proposal (Incorporated)</a>
</li>
<li>
<a href="/files/io500-code-of-conduct-policy-proposal.pdf">Code of Conduct Policy Proposal (Incorporated)</a>
</li>
</ul>
</div>