-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtrack_parallel.html
45 lines (38 loc) · 1.72 KB
/
track_parallel.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SAT Competition 2020</title>
<link rel="stylesheet" href="main.css" type="text/css">
<link rel="icon" type="image/x-icon" href="doge2.ico">
<script src="https://www.w3schools.com/lib/w3.js"></script>
<style>a#track-parallel { color:#c20114; }</style>
</head>
<body>
<div class="main">
<div class="navigation" w3-include-html="navigation.html"></div>
<script>w3.includeHTML();</script>
<div class="content">
<h1>SAT Competition 2020</h1>
<h2>Parallel Track</h2>
The Parallel Track will be run on Amazon Web Services. The solvers participating in this track
will be executed with a wall-clock time limit of 5000 seconds, thus similar to the Main Track.
Each solver will be run an a single AWS machine of the type m4.16xlarge, which has 64 virtual
cores and 256GB of memory. More details about m4.16xlarge nodes can be found
<a href="https://aws.amazon.com/about-aws/whats-new/2016/09/introducing-new-m4-instance-size-m4-16xlarge-and-new-region-availability-of-m4-instances/">here</a>.
<BR><BR>
Similar to the Cloud Track, participants of this track are required to submit their solver
via a GitHub repository (which can be private). The repository should contain a docker file
that compiles the solver.
<h4>Solver Submission</h4>
In order to participate in the Parallel Track please send an email to "[email protected]" containing the following:
<ol>
<li> name of the solver and a list of the authors
<li> your AWS account number
<li> the URL of the GitHub repository including the branch
<li> the full, 40-character SHA-1 hash of the commit
</ol>
</div>
</div>
</body>
</html>