Skip to content

Commit

Permalink
Built site for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ASKabalan committed Jun 7, 2024
1 parent 81a81c0 commit fd414e5
Show file tree
Hide file tree
Showing 11 changed files with 362 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2721a612
5bf69be5
Binary file added marseille2024/assets/FastPM_Init.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added marseille2024/assets/FastPM_LPT.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added marseille2024/assets/FastPM_ODE.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added marseille2024/assets/FastPM_ODE3D.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added marseille2024/assets/JaxLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added marseille2024/assets/github_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
378 changes: 337 additions & 41 deletions marseille2024/index.html

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions search.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,26 @@
"title": "Differentiable and distributed Particle-Mesh n-body simulations",
"section": "Traditional cosmological inference",
"text": "Traditional cosmological inference\n\nBayesian inference in cosmology\n\nWe need to infer the cosmological parameters \\(\\theta\\) that generated an observartion \\(x\\)\n\n\\[p(\\theta | x ) \\propto \\underbrace{p(x | \\theta)}_{\\mathrm{likelihood}} \\ \\underbrace{p(\\theta)}_{\\mathrm{prior}}\\]\n\n\n\n\n\n\n\n\n\n\n ➢  Compute summary statistics based on the 2-point correlation function of the shear field\n\n\n ➢  Run an MCMC chain to recover the posterior distribution of the cosmological parameters, using an analytical likelihood\n\n\n\n\n\n\n\nLimitations\n\n\n\nSimple summary statistics assume Gaussianity\nThe need to compute an analytical likelihood"
},
{
"objectID": "marseille2024/index.html#jax-automatic-differentiation-and-hardware-acceleration",
"href": "marseille2024/index.html#jax-automatic-differentiation-and-hardware-acceleration",
"title": "Differentiable and distributed Particle-Mesh n-body simulations",
"section": "JAX : Automatic differentiation and Hardware acceleration",
"text": "JAX : Automatic differentiation and Hardware acceleration\n\n \nimport numpy as np\n\n\ndef multiply_and_add(a, b, c):\n return np.dot(a, b) + c\n\n\na, b, c = np.random.normal(size=(3, 32, 32))\nresult = multiply_and_add(a, b, c)\n\n\nimport jax\nimport jax.numpy as jnp\n\n\ndef multiply_and_add(a, b, c):\n return jnp.dot(a, b) + c\n\n\nkey = jax.random.PRNGKey(0)\na, b, c = jax.random.normal(key, (3, 32, 32))\n\nresult = multiply_and_add(a, b, c)"
},
{
"objectID": "marseille2024/index.html#jax-automatic-differentiation-and-hardware-acceleration-1",
"href": "marseille2024/index.html#jax-automatic-differentiation-and-hardware-acceleration-1",
"title": "Differentiable and distributed Particle-Mesh n-body simulations",
"section": "JAX : Automatic differentiation and Hardware acceleration",
"text": "JAX : Automatic differentiation and Hardware acceleration\n\n \nimport jax\nimport jax.numpy as jnp\n\n\ndef multiply_and_add(a, b, c):\n return jnp.dot(a, b) + c\n\n\nkey = jax.random.PRNGKey(0)\na, b, c = jax.random.normal(key, (3, 32, 32))\n\nresult = multiply_and_add(a, b, c)"
},
{
"objectID": "marseille2024/index.html#jax-automatic-differentiation-and-hardware-acceleration-2",
"href": "marseille2024/index.html#jax-automatic-differentiation-and-hardware-acceleration-2",
"title": "Differentiable and distributed Particle-Mesh n-body simulations",
"section": "JAX : Automatic differentiation and Hardware acceleration",
"text": "JAX : Automatic differentiation and Hardware acceleration\n\n \nimport jax\nimport jax.numpy as jnp\n\n@jax.jit\ndef multiply_and_add(a, b, c):\n return jnp.dot(a, b) + c\n\n\nkey = jax.random.PRNGKey(0)\na, b, c = jax.random.normal(key, (3, 32, 32))\n\nresult = multiply_and_add(a, b, c) \ngradient = jax.grad(multiply_and_add)(a, b, c)\n \n\n\nJAX : Numpy + Autograd + GPU\n\n\n\njax.grad uses automatic differentiation to compute the gradient of the function\njax.jit compiles the function to run on GPUs"
}
]
4 changes: 2 additions & 2 deletions site_libs/revealjs/dist/theme/quarto.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</url>
<url>
<loc>https://ASKabalan.github.io/slides/marseille2024/index.html</loc>
<lastmod>2024-06-05T22:43:40.640Z</lastmod>
<lastmod>2024-06-07T23:52:47.270Z</lastmod>
</url>
<url>
<loc>https://ASKabalan.github.io/slides/template/index.html</loc>
Expand Down

0 comments on commit fd414e5

Please sign in to comment.