-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
168 lines (139 loc) · 5.12 KB
/
index.html
File metadata and controls
168 lines (139 loc) · 5.12 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
---
description: An open-source library for ultrasound modelling and tomography that provides flexibility and scalability together with production-grade performance.
background: /images/background_01.jpg
image: /siteicon.png
---
<section class="hero" style="background-image: url({% include relative-src.html src=page.background %})">
<div class="inner-hero text-container">
<div class="hero-text-container">
<h1 class="editable">Accelerating ultrasound research</h1>
<p class="subtext editable">
An open-source library for ultrasound modelling and tomography that provides flexibility and scalability together with production-grade performance.
</p>
<div class="cta button alt"><a href="#install">Get started</a></div>
</div>
</div>
</section>
<div class="content">
<section class="info">
<div class="container">
<h2 class="editable">Key features</h2>
<div class="flex">
<div class="text first-text">
<h3 class="editable">High-performance</h3>
<p class="editable">
Stride provides CPU- and GPU-ready finite-difference solvers, including variable sound speed, density,
and attenuation and off-grid sources and receivers.
</p>
</div>
<div class="text">
<h3 class="editable">Intuitive</h3>
<p class="editable">
Easily prototype tomography algorithms with automatic gradient calculations, state-of-the-art
reconstruction algorithms, and the flexibility to (re)define every step.
</p>
</div>
<div class="text">
<h3 class="editable">Flexible</h3>
<p class="editable">
Stride integrates with <a href="https://www.devitoproject.org/" target="_blank">Devito</a>, allowing you to add new physics
using math-like symbolic expressions that will automatically run on both CPUs and GPUs.
</p>
</div>
<div class="text last-text">
<h3 class="editable">Scalable</h3>
<p class="editable">
With Mosaic, its custom parallelisation library, Stride can scale seamlessly from a local workstation,
to an HPC cluster with production-grade performance.
</p>
</div>
</div>
</div>
</section>
<section class="info negative" id="install">
<div class="container">
<h2 class="editable">Install Stride</h2>
<div class="flex">
<div class="text first-text">
<p class="editable">
Jump right in using a Jupyter notebook directly in your browser with <a href="https://mybinder.org/v2/gh/trustimaging/stride/HEAD" target="_blank">binder</a>.
</p>
<p class="editable">
Otherwise, the recommended way to install Stride is through Anaconda's package manager (version >=4.9), which can be downloaded
in <a href="https://www.continuum.io/downloads" target="_blank">Anaconda</a> or <a href="https://conda.io/miniconda.html" target="_blank">Miniconda</a>.
A Python version above 3.8 is recommended to run Stride.
</p>
<p class="editable">
To install Stride, follow these steps:
</p>
<div class="highlight-container">
{% highlight sh %}
git clone https://github.com/trustimaging/stride
cd stride
conda env create -f environment.yml
conda activate stride
pip install -e .
{% endhighlight %}
</div>
<p class="editable">
You can also start using Stride through Docker:
</p>
<div class="highlight-container">
{% highlight sh %}
git clone https://github.com/trustimaging/stride.git
cd stride
docker-compose up stride
{% endhighlight %}
</div>
<p class="editable">
which will start a Jupyter server within the Docker container and display a URL on
your terminal that looks something like <a href="#">https://127.0.0.1:8888/?token=XXX</a>.
To access the server, copy-paste the URL shown on the terminal into your browser to start a new
Jupyter session.
</p>
</div>
</div>
</div>
</section>
<section class="info">
<div class="container">
<h2 class="editable">Join the community</h2>
<div class="flex">
<div class="text first-text">
<p class="editable">
Join the Stride community to share your projects, contribute, and get your questions answered.
</p>
</div>
</div>
<div class="flex box-container">
<div class="box first-box">
<a href="https://join.slack.com/t/stridecodes/shared_invite/zt-xr1dlqv7-Lesu9nFYOqF~AjA6VPUdhw" target="_blank">
<img src="/images/slack.png" alt="Slack">
<h3 class="editable">Slack</h3>
<p class="editable">
Join the conversation and share your questions and comments.
</p>
</a>
</div>
<div class="box">
<a href="https://github.com/trustimaging/stride" target="_blank">
<img src="/images/github_negative.png" alt="GitHub">
<h3 class="editable">GitHub</h3>
<p class="editable">
Stay up to date with the latest Stride features.
</p>
</a>
</div>
<div class="box last-box">
<a href="https://docs.stride.codes" target="_blank">
<img src="/images/favicon.png" alt="Stride">
<h3 class="editable">Documentation</h3>
<p class="editable">
Check our Stride documentation and examples.
</p>
</a>
</div>
</div>
</div>
</section>
</div>