mirror of
https://github.com/fverdugo/XM_40017.git
synced 2025-11-24 09:24:32 +01:00
Close to first version to be published
This commit is contained in:
22
docs/make.jl
22
docs/make.jl
@@ -99,6 +99,7 @@ repo_root = joinpath(@__DIR__,"..") |> normpath
|
||||
mkpath(joinpath(repo_root,"docs","src","notebooks"))
|
||||
notebook_files = glob("*.ipynb", joinpath(repo_root,"notebooks/"))
|
||||
for filepath in notebook_files
|
||||
#continue
|
||||
convert_embedded_img_to_base64(filepath)
|
||||
filename_with_ext = splitpath(filepath)[end]
|
||||
filename = splitext(filename_with_ext)[1]
|
||||
@@ -117,16 +118,17 @@ makedocs(;
|
||||
prettyurls=get(ENV, "CI", "false") == "true",
|
||||
canonical="https://fverdugo.github.io/XM_40017",
|
||||
edit_link="main",),
|
||||
pages=["Home" => "index.md","Getting started"=>"getting_started_with_julia.md", "Notebooks"=>[
|
||||
"Julia Basics" => "notebooks/julia_basics.md",
|
||||
"Tasks and channels" => "notebooks/julia_async.md",
|
||||
"Remote calls and remote channels" => "notebooks/julia_distributed.md",
|
||||
"MPI" => "notebooks/mpi_tutorial.md",
|
||||
"Matrix Multiplication"=>"notebooks/matrix_matrix.md",
|
||||
"Jacobi" => "notebooks/jacobi_method.md",
|
||||
"ASP" => "notebooks/asp.md",
|
||||
"Solutions" => "notebooks/solutions.md"
|
||||
]],
|
||||
pages=["Home" => "index.md","Getting started"=>"getting_started_with_julia.md",
|
||||
#"Notebooks"=>[
|
||||
# "Julia Basics" => "notebooks/julia_basics.md",
|
||||
# "Tasks and channels" => "notebooks/julia_async.md",
|
||||
# "Remote calls and remote channels" => "notebooks/julia_distributed.md",
|
||||
# "MPI" => "notebooks/mpi_tutorial.md",
|
||||
# "Matrix Multiplication"=>"notebooks/matrix_matrix.md",
|
||||
# "Jacobi" => "notebooks/jacobi_method.md",
|
||||
# "ASP" => "notebooks/asp.md",
|
||||
# "Solutions" => "notebooks/solutions.md" ],
|
||||
],
|
||||
)
|
||||
|
||||
deploydocs(;
|
||||
|
||||
@@ -10,10 +10,13 @@ Welcome to the interactive lecture notes of the [Programming Large-Scale Paralle
|
||||
This page contains part of the course material of the Programming Large-Scale Parallel Systems course at VU Amsterdam.
|
||||
We provide several lecture notes in jupyter notebook format, which will help you to learn how to design, analyze, and program parallel algorithms on multi-node computing systems.
|
||||
Further information about the course is found in the study guide
|
||||
([click here](https://studiegids.vu.nl/EN/courses/2023-2024/XM_40017#/)) and our Canvas page (for registered students).
|
||||
([click here](https://studiegids.vu.nl/EN/courses/2023-2024/XM_40017#/)) and our Canvas page (for registered students).
|
||||
|
||||
!!! note
|
||||
This page contains only a part of the course material. The rest is available on Canvas. In particular, **the lecture notes in this public webpage do not fully cover all topics in the final exam**.
|
||||
Material will be added incrementally to the website as the course advances.
|
||||
|
||||
!!! warning
|
||||
This page will eventually contain only a part of the course material. The rest will be available on Canvas. In particular, **the material in this public webpage does not fully cover all topics in the final exam**.
|
||||
|
||||
## How to use this page
|
||||
|
||||
|
||||
Reference in New Issue
Block a user