Skip to content

Commit

Permalink
Close to first version to be published
Browse files Browse the repository at this point in the history
  • Loading branch information
fverdugo committed Aug 25, 2023
1 parent 097159c commit c1aa8a7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Jupyter notebook scripts for the course Programming Large-Scale Parallel Systems

- [**Go to webpage**](https://fverdugo.github.io/XM_40017/dev)

NB: The `notebooks` folder contains material under construction. The material that is ready for study is the one accessible from the website. New material will be added to the website as the course advances.
NB: The `notebooks` folder contains material under construction. The material that is ready for study is the one accessible from the website. The material will be added incrementally to the website as the course advances.
22 changes: 12 additions & 10 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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(;
Expand Down
7 changes: 5 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c1aa8a7

Please sign in to comment.