forked from javierip/parallel-processing-teaching-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (70 loc) · 3.63 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>PDC start code by javierip</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-light.css">
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<h1>Parallel Processing Teaching Toolkit (PPTK)</h1>
<p>A repository designed to teach Parallel and Distributed Computing</p>
<p class="view"><a href="https://github.com/javierip/parallel-processing-teaching-toolkit">View the Project on GitHub <small>javierip/parallel-processing-teaching-toolkit</small></a></p>
<ul>
<li><a href="https://github.com/javierip/parallel-processing-teaching-toolkit/zipball/master">Download <strong>ZIP File</strong></a></li>
<li><a href="https://github.com/javierip/parallel-processing-teaching-toolkit/tarball/master">Download <strong>TAR Ball</strong></a></li>
<li><a href="https://github.com/javierip/parallel-processing-teaching-toolkit">View On <strong>GitHub</strong></a></li>
</ul>
</header>
<section>
<h3>
<a id="welcome-to-pce" class="anchor" href="#welcome-to-pce" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Welcome</h3>
<p>PPTK is a source code repository for teaching Parallel and Distributed Computing concepts. It was designed to facilitate the learning process. The material was tested on Ubuntu 14.04 Linux. It is divided into modules:</p>
<ol>
<li>Compilation</li>
<li >Scripting</li>
<li>Multi-core processors</li>
<li>GPUs and accelerators</li>
<li>Computer clusters</li>
<li>Integration projects</li>
</ol>
<h3>
<a id="example-structure" class="anchor" href="#example-structure" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Example structure</h3>
<p>Each of the example contains a standard structure:</p>
<ul>
<li><b>About this example:</b> basic information about the code.</li>
<li><b>Requirements:</b> dependencies.</li>
<li><b>Run:</b> instructions to execute and compile (if necessary).</li>
<li><b>Output: expected output.</b></li>
<li><b>Extra Resources:</b> additional information and references.</li>
</ul>
<h3>
<a id="authors-and-contributors" class="anchor" href="#authors-and-contributors" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Authors and Contributors</h3>
<ul>
<li><a href="https://github.com/javierip" class="user-mention">@javierip</a></li>
<li><a href="https://github.com/leanbalma" class="user-mention">@leanbalma</a></li>
<li><a href="https://github.com/sancolo" class="user-mention">@sancolo</a></li>
<li><a href="https://github.com/arostag" class="user-mention">@arostag</a></li>
</ul>
</section>
<footer>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="javascripts/scale.fix.js"></script>
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-6882631-15', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>