Skip to content

Commit 2f18103

Browse files
committed
update website
1 parent bf8ad5b commit 2f18103

File tree

5 files changed

+289
-105
lines changed

5 files changed

+289
-105
lines changed

documentation.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6+
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<title>Shamrock</title>
9+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
10+
<meta name="description" content="">
11+
<link rel="canonical" href="https://perso.ens-lyon/timothee.davidcleris">
12+
13+
<link rel="stylesheet" href="style.css">
14+
15+
</head>
16+
17+
18+
<body>
19+
20+
<ul>
21+
<li><a href="./index.html">Home</a></li>
22+
<li><a href="./publications.html">Publications</a></li>
23+
<li><a class="active" href="./documentation.html">Documentation</a></li>
24+
</ul>
25+
26+
</body>
27+
28+
29+
30+
<div class="page-content">
31+
<div class="wrap">
32+
<div class="post">
33+
34+
35+
36+
<h1 id="description">Documentation</h1>
37+
<p>Will be public as soon as the code is released</p>
38+
39+
40+
41+
</p>
42+
43+
<hr>
44+
<footer> &copy; <a href="https://tdavidcl.github.io/index.html">Timothée David--Cléris</a> 2020 -- 2023</footer>
45+
46+
</div>
47+
</div>
48+
</div>
49+
50+
</html>

index.html

Lines changed: 64 additions & 105 deletions
Original file line numberDiff line numberDiff line change
@@ -1,129 +1,88 @@
11
<!DOCTYPE html>
2+
<html>
23

4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
36

4-
<html>
5-
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6-
77
<meta http-equiv="X-UA-Compatible" content="IE=edge">
88
<title>Shamrock</title>
99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010
<meta name="description" content="">
1111
<link rel="canonical" href="https://perso.ens-lyon/timothee.davidcleris">
1212

13-
14-
<style>
15-
body {margin:0;}
16-
ul {
17-
18-
list-style-type: none;
19-
margin: 0;
20-
padding: 0;
21-
overflow: hidden;
22-
background-color: #FFFFFF;
23-
position: fixed;
24-
top: 0;
25-
width: 100%;
26-
}
27-
li {
28-
float: left;
29-
border-right:1px solid #bbb;
30-
}
31-
li:last-child {
32-
border-right: none;
33-
}
34-
li a {
35-
display: block;
36-
color: black;
37-
text-align: center;
38-
padding: 14px 16px;
39-
text-decoration: none;
40-
}
41-
li a:hover:not(.active) {
42-
background-color: #D8D8D8;
43-
}
44-
.active {
45-
background-color: #4CAF50;
46-
}
47-
.page-content{padding:30px 0;background-color:#fff;}
48-
.wrap:before,
49-
.wrap:after{content:"";display:table;}
50-
.wrap:after{clear:both;}
51-
.wrap{max-width:1000px;padding:0 30px;margin:0 auto;zoom:1;}
52-
.post-content{margin:0 0 30px;}
53-
.post-content > *{margin:20px 0;}
54-
.post-content h1,
55-
.post-content h2,
56-
.post-content h3,
57-
.post-content h4,
58-
.post-content h5,
59-
.post-content h6{line-height:1;font-weight:300;margin:40px 0 20px;}
60-
.post-content h2{font-size:32px;letter-spacing:-1.25px;}
61-
.post-content h3{font-size:26px;letter-spacing:-1px;}
62-
.post-content h4{font-size:20px;letter-spacing:-1px;}
63-
.post-content blockquote{border-left:4px solid #e8e8e8;padding-left:20px;font-size:18px;opacity:.6;letter-spacing:-1px;margin:30px 0;}
64-
.post-content ul,
65-
.post-content ol{padding-left:20px;}
66-
.post pre,
67-
.post code{border:1px solid #d5d5e9;background-color:#eef;padding:8px 12px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;font-size:15px;}
68-
.post .highlightglslvs pre,
69-
.post .highlightglslvs code{background-color:#fee;}
70-
.post .highlightglslfs pre,
71-
.post .highlightglslfs code{background-color:#efe;}
72-
.post code{padding:1px 0px;white-space:pre-wrap;}
73-
.post ul,
74-
.post ol{margin-left:1.35em;}
75-
.post pre code{border:none;}
76-
.post pre.terminal{border:1px solid #000;background-color:#333;color:#FFF;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
77-
.post pre.terminal code{background-color:#333;}
78-
body{font-family:Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;font-weight:300;background-color:#fdfdfd;}
79-
</style>
80-
81-
13+
<link rel="stylesheet" href="style.css">
8214

8315
</head>
8416

8517

86-
87-
<!body bgcolor="#000000">
8818
<body>
8919

90-
<ul>
91-
<li><a class="active" href="./index.html">Home</a></li>
92-
<!-- <li><a href="./news.html">News</a></li>
93-
<li><a href="./project.html">Projects</a></li>
94-
<li><a href="./about.html">About</a></li> -->
95-
</ul>
20+
<ul>
21+
<li><a class="active" href="./index.html">Home</a></li>
22+
<li><a href="./publications.html">Publications</a></li>
23+
<li><a href="./project.html">Documentation</a></li>
24+
</ul>
9625

9726
</body>
9827

9928

10029

10130
<div class="page-content">
102-
<div class="wrap">
103-
<div class="post">
31+
<div class="wrap">
32+
<div class="post">
10433
<p></p>
105-
<img src="logosham_white.png" width="550"><!-- width="85%"> -->
106-
107-
108-
<p>An astrophysical code for AMR & SPH on GPU clusters</p>
109-
110-
<hr>
111-
112-
113-
114-
115-
<h1 id="description">Description</h1>
116-
<p>An general purpose code tu perform hydrodynamical simulations with various numerical methods.
117-
This code is platform agnostic, meaning that it can run on a laptop up to a multi-GPU cluster</p>
118-
<h2 id="status">Status</h2>
119-
<p>This code will be public when ready for production use</p>
120-
121-
122-
123-
</p>
124-
125-
</div>
126-
</div>
34+
<img src="no_background_nocolor.png" width="550"><!-- width="85%"> -->
35+
36+
37+
<p>An astrophysical code for AMR & SPH on GPU clusters</p>
38+
39+
<hr>
40+
41+
42+
43+
44+
<h1 id="description">Description</h1>
45+
<p>An general purpose code tu perform hydrodynamical simulations with various numerical methods.
46+
This code is platform agnostic, meaning that it can run on a laptop up to a multi-GPU cluster</p>
47+
<h2 id="status">Status</h2>
48+
<p>This code will be public when ready for production use</p>
49+
50+
51+
<table>
52+
<tr>
53+
<th>MPI Layer</th>
54+
<th></th>
55+
<th></th>
56+
</tr>
57+
<tr>
58+
<th>GPU Layer</th>
59+
<th></th>
60+
<th>(using <a href="https://www.khronos.org/sycl/">Sycl</a>)</th>
61+
</tr>
62+
<tr>
63+
<th>SPH</th>
64+
<th></th>
65+
<td>gas, artificial viscosity</td>
66+
</tr>
67+
<tr>
68+
<th>Self-gravity</th>
69+
<th></th>
70+
<td>using FMM </td>
71+
</tr>
72+
<tr>
73+
<th>AMR</th>
74+
<td>WIP</td>
75+
<td>basic module working</td>
76+
</tr>
77+
</table>
78+
79+
</p>
80+
<hr>
81+
<footer> &copy; <a href="https://tdavidcl.github.io/index.html">Timothée David--Cléris</a> 2020 -- 2023</footer>
82+
83+
84+
</div>
85+
</div>
12786
</div>
12887

129-
</html>
88+
</html>

no_background_nocolor.png

207 KB
Loading

publications.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6+
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<title>Shamrock</title>
9+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
10+
<meta name="description" content="">
11+
<link rel="canonical" href="https://perso.ens-lyon/timothee.davidcleris">
12+
13+
<link rel="stylesheet" href="style.css">
14+
15+
</head>
16+
17+
18+
<body>
19+
20+
<ul>
21+
<li><a href="./index.html">Home</a></li>
22+
<li><a class="active" href="./publications.html">Publications</a></li>
23+
<li><a href="./documentation.html">Documentation</a></li>
24+
</ul>
25+
26+
</body>
27+
28+
29+
30+
<div class="page-content">
31+
<div class="wrap">
32+
<div class="post">
33+
34+
<h1 id="description">Publications</h1>
35+
<p>None for now 😉</p>
36+
37+
</p>
38+
39+
<hr>
40+
<footer> &copy; <a href="https://tdavidcl.github.io/index.html">Timothée David--Cléris</a> 2020 -- 2023</footer>
41+
42+
43+
</div>
44+
</div>
45+
</div>
46+
47+
</html>

0 commit comments

Comments
 (0)