-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·129 lines (114 loc) · 5.13 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
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
---
layout: default
title: Parsl A Parallel Scripting Library for Python
---
<div class="wide container-fluid" role="main">
<div class="row title-page">
<div class="container text-center">
<h1>Parsl: A Parallel Scripting Library for Python</h1>
<p>Parsl is a parallel scripting library for Python. It provides a model by which complex workflows
can be represented in an intuitive Python-based control application. It facilitates transparent parallel
execution of workflow components (apps) on any distributed or parallel computing system.</p>
</div>
</div>
</div>
<section id="why" class="parsl-section banner">
<div class="container" >
<div class="row" >
<div class="page-header">
<h2>Why Parsl?</h2>
</div>
<div class="media col-sm-12">
<div class="media-left hl-icon">
<img src='images/server-rack.png'>
</div>
<div class="media-body">
<p>Parsl is parallel: it runs multiple programs concurrently as soon as their inputs are available, reducing the need for complex parallel programming. </p>
</div>
</div>
<div class="media col-sm-12">
<div class="media-left hl-icon">
<img src='images/wand.png'>
</div>
<div class="media-body">
<p>Parsl is easy: short, simple scripts can do large-scale work. The same script runs on multicore computers, clusters, grids, clouds, and supercomputers. </p>
</div>
</div>
<div class="media col-sm-12">
<div class="media-left hl-icon">
<img src='images/bird.png'>
</div>
<div class="media-body">
<p>Parsl is fast: it can run a million programs, thousands at a time, launching thousands per second. </p>
</div>
</div>
<div class="media col-sm-12">
<div class="media-left hl-icon">
<img src='images/flask.png'>
</div>
<div class="media-body">
<p>Parsl is flexible: it can be used in physical sciences, biological sciences, social sciences, humanities, computer science, education. </p>
</div>
</div>
<div class="media col-sm-12">
<div class="media-left hl-icon">
<img src='images/python.png'>
</div>
<div class="media-body">
<p>Parsl is Python: developers write pure Python code with decorators around parallel applications. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="get-started" class="parsl-section banner">
<div class="container" >
<div class="row">
<div class="page-header">
<h2>Get Started</h2>
</div>
<div class="col-sm-4">
<div class="center-block">
<a href="http://try.parsl-project.org:8000" class="btn btn-success start-button" role="button">
<span class="fa fa-car"></span> Try Parsl »
</a>
<p class="text-center"></br>Try Parsl in hosted Jupyter notebooks. No software required.</p>
</div>
</div>
<div class="col-sm-4 centered">
<div class="center-block">
<a href="http://parsl.readthedocs.io/en/latest/quickstart.html#installation" class="btn btn-success start-button">
<span class="fa fa-cloud-download"></span> Install Parsl »
</a>
<p class="text-center"></br>Install Parsl anywhere using Pip.</p>
</div>
</div>
<div class="col-sm-4 centered">
<a href="https://github.com/parsl" class="btn btn-success start-button">
<span class="fa fa-github"></span> Browse and Fork »
</a>
<p class="text-center"></br>View and contribute on GitHub.</p>
</div>
</div>
</div>
</section>
<section id="news" class="parsl-section banner">
<div class="container">
<div class="row">
<div class="page-header">
<h2>News</h2>
</div>
<div class="news">
<ul>
{% for post in site.posts limit:5 %}
<li>
<p><b>{{ post.date | date: "%-d %b %Y" }}</b>: {{ post.content | remove: '<p>' | remove: '</p>' }}</p>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</section>