mirror of
https://github.com/fverdugo/XM_40017.git
synced 2025-11-08 22:14:23 +01:00
Populate with existing notebooks
This commit is contained in:
parent
67c2c39cda
commit
8892e1e7f7
@ -104,7 +104,14 @@ makedocs(;
|
||||
prettyurls=get(ENV, "CI", "false") == "true",
|
||||
canonical="https://fverdugo.github.io/XM_40017",
|
||||
edit_link="main",),
|
||||
pages=["Home" => "index.md","Hello World" => "notebook-hello.md", "Notebooks"=>["Matrix Multiplication"=>"matrix_matrix.md"]],
|
||||
pages=["Home" => "index.md","Julia Tutorial" => "julia_tutorial.md", "Notebooks"=>[
|
||||
"Why is Julia fast?" => "julia_intro.md",
|
||||
"Julia Basics" => "julia_basics.md",
|
||||
"Julia Asynchronous" => "julia_async.md",
|
||||
"Julia Distributed" => "julia_distributed.md",
|
||||
"Matrix Multiplication"=>"matrix_matrix.md",
|
||||
"Jacobi/SOR" => "julia_jacobi.md"
|
||||
]],
|
||||
)
|
||||
|
||||
deploydocs(;
|
||||
|
||||
30
docs/src/jacobi_2D.md
Normal file
30
docs/src/jacobi_2D.md
Normal file
@ -0,0 +1,30 @@
|
||||
```@meta
|
||||
EditURL = "https://github.com/fverdugo/XM_40017/blob/main/docs/src/notebooks/jacobi_2D.ipynb"
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<div class="admonition is-success">
|
||||
<header class="admonition-header">Tip</header>
|
||||
<div class="admonition-body">
|
||||
<ul>
|
||||
<li>
|
||||
Download this notebook and run it locally on your machine [recommended]. Click <a href="notebooks/jacobi_2D.ipynb" download>here</a>.
|
||||
</li>
|
||||
<li>
|
||||
You can also run this notebook in the cloud using Binder. Click <a href="https://mybinder.org/v2/gh/fverdugo/XM_40017/gh-pages?filepath=dev/notebooks/jacobi_2D.ipynb">here</a>
|
||||
.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<iframe id="notebook" src="../notebook-output/jacobi_2D.html" style="width:100%"></iframe>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function(){
|
||||
var myIframe = document.getElementById("notebook");
|
||||
iFrameResize({log:true}, myIframe);
|
||||
});
|
||||
</script>
|
||||
```
|
||||
30
docs/src/julia_async.md
Normal file
30
docs/src/julia_async.md
Normal file
@ -0,0 +1,30 @@
|
||||
```@meta
|
||||
EditURL = "https://github.com/fverdugo/XM_40017/blob/main/docs/src/notebooks/julia_async.ipynb"
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<div class="admonition is-success">
|
||||
<header class="admonition-header">Tip</header>
|
||||
<div class="admonition-body">
|
||||
<ul>
|
||||
<li>
|
||||
Download this notebook and run it locally on your machine [recommended]. Click <a href="notebooks/julia_async.ipynb" download>here</a>.
|
||||
</li>
|
||||
<li>
|
||||
You can also run this notebook in the cloud using Binder. Click <a href="https://mybinder.org/v2/gh/fverdugo/XM_40017/gh-pages?filepath=dev/notebooks/julia_async.ipynb">here</a>
|
||||
.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<iframe id="notebook" src="../notebook-output/julia_async.html" style="width:100%"></iframe>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function(){
|
||||
var myIframe = document.getElementById("notebook");
|
||||
iFrameResize({log:true}, myIframe);
|
||||
});
|
||||
</script>
|
||||
```
|
||||
30
docs/src/julia_basics.md
Normal file
30
docs/src/julia_basics.md
Normal file
@ -0,0 +1,30 @@
|
||||
```@meta
|
||||
EditURL = "https://github.com/fverdugo/XM_40017/blob/main/docs/src/notebooks/julia_basics.ipynb"
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<div class="admonition is-success">
|
||||
<header class="admonition-header">Tip</header>
|
||||
<div class="admonition-body">
|
||||
<ul>
|
||||
<li>
|
||||
Download this notebook and run it locally on your machine [recommended]. Click <a href="notebooks/julia_basics.ipynb" download>here</a>.
|
||||
</li>
|
||||
<li>
|
||||
You can also run this notebook in the cloud using Binder. Click <a href="https://mybinder.org/v2/gh/fverdugo/XM_40017/gh-pages?filepath=dev/notebooks/julia_basics.ipynb">here</a>
|
||||
.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<iframe id="notebook" src="../notebook-output/julia_basics.html" style="width:100%"></iframe>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function(){
|
||||
var myIframe = document.getElementById("notebook");
|
||||
iFrameResize({log:true}, myIframe);
|
||||
});
|
||||
</script>
|
||||
```
|
||||
30
docs/src/julia_distributed.md
Normal file
30
docs/src/julia_distributed.md
Normal file
@ -0,0 +1,30 @@
|
||||
```@meta
|
||||
EditURL = "https://github.com/fverdugo/XM_40017/blob/main/docs/src/notebooks/julia_distributed.ipynb"
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<div class="admonition is-success">
|
||||
<header class="admonition-header">Tip</header>
|
||||
<div class="admonition-body">
|
||||
<ul>
|
||||
<li>
|
||||
Download this notebook and run it locally on your machine [recommended]. Click <a href="notebooks/julia_distributed.ipynb" download>here</a>.
|
||||
</li>
|
||||
<li>
|
||||
You can also run this notebook in the cloud using Binder. Click <a href="https://mybinder.org/v2/gh/fverdugo/XM_40017/gh-pages?filepath=dev/notebooks/julia_distributed.ipynb">here</a>
|
||||
.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<iframe id="notebook" src="../notebook-output/julia_distributed.html" style="width:100%"></iframe>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function(){
|
||||
var myIframe = document.getElementById("notebook");
|
||||
iFrameResize({log:true}, myIframe);
|
||||
});
|
||||
</script>
|
||||
```
|
||||
30
docs/src/julia_intro.md
Normal file
30
docs/src/julia_intro.md
Normal file
@ -0,0 +1,30 @@
|
||||
```@meta
|
||||
EditURL = "https://github.com/fverdugo/XM_40017/blob/main/docs/src/notebooks/julia_intro.ipynb"
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<div class="admonition is-success">
|
||||
<header class="admonition-header">Tip</header>
|
||||
<div class="admonition-body">
|
||||
<ul>
|
||||
<li>
|
||||
Download this notebook and run it locally on your machine [recommended]. Click <a href="notebooks/julia_intro.ipynb" download>here</a>.
|
||||
</li>
|
||||
<li>
|
||||
You can also run this notebook in the cloud using Binder. Click <a href="https://mybinder.org/v2/gh/fverdugo/XM_40017/gh-pages?filepath=dev/notebooks/julia_intro.ipynb">here</a>
|
||||
.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<iframe id="notebook" src="../notebook-output/julia_intro.html" style="width:100%"></iframe>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function(){
|
||||
var myIframe = document.getElementById("notebook");
|
||||
iFrameResize({log:true}, myIframe);
|
||||
});
|
||||
</script>
|
||||
```
|
||||
30
docs/src/julia_jacobi.md
Normal file
30
docs/src/julia_jacobi.md
Normal file
@ -0,0 +1,30 @@
|
||||
```@meta
|
||||
EditURL = "https://github.com/fverdugo/XM_40017/blob/main/docs/src/notebooks/julia_jacobi.ipynb"
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<div class="admonition is-success">
|
||||
<header class="admonition-header">Tip</header>
|
||||
<div class="admonition-body">
|
||||
<ul>
|
||||
<li>
|
||||
Download this notebook and run it locally on your machine [recommended]. Click <a href="notebooks/julia_jacobi.ipynb" download>here</a>.
|
||||
</li>
|
||||
<li>
|
||||
You can also run this notebook in the cloud using Binder. Click <a href="https://mybinder.org/v2/gh/fverdugo/XM_40017/gh-pages?filepath=dev/notebooks/julia_jacobi.ipynb">here</a>
|
||||
.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<iframe id="notebook" src="../notebook-output/julia_jacobi.html" style="width:100%"></iframe>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function(){
|
||||
var myIframe = document.getElementById("notebook");
|
||||
iFrameResize({log:true}, myIframe);
|
||||
});
|
||||
</script>
|
||||
```
|
||||
30
docs/src/julia_tutorial.md
Normal file
30
docs/src/julia_tutorial.md
Normal file
@ -0,0 +1,30 @@
|
||||
```@meta
|
||||
EditURL = "https://github.com/fverdugo/XM_40017/blob/main/docs/src/notebooks/julia_tutorial.ipynb"
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<div class="admonition is-success">
|
||||
<header class="admonition-header">Tip</header>
|
||||
<div class="admonition-body">
|
||||
<ul>
|
||||
<li>
|
||||
Download this notebook and run it locally on your machine [recommended]. Click <a href="notebooks/julia_tutorial.ipynb" download>here</a>.
|
||||
</li>
|
||||
<li>
|
||||
You can also run this notebook in the cloud using Binder. Click <a href="https://mybinder.org/v2/gh/fverdugo/XM_40017/gh-pages?filepath=dev/notebooks/julia_tutorial.ipynb">here</a>
|
||||
.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
|
||||
```@raw html
|
||||
<iframe id="notebook" src="../notebook-output/julia_tutorial.html" style="width:100%"></iframe>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function(){
|
||||
var myIframe = document.getElementById("notebook");
|
||||
iFrameResize({log:true}, myIframe);
|
||||
});
|
||||
</script>
|
||||
```
|
||||
16628
docs/src/notebook-output/Jacobi_2D.html
Normal file
16628
docs/src/notebook-output/Jacobi_2D.html
Normal file
File diff suppressed because one or more lines are too long
15936
docs/src/notebook-output/julia_Jacobi.html
Normal file
15936
docs/src/notebook-output/julia_Jacobi.html
Normal file
File diff suppressed because one or more lines are too long
15547
docs/src/notebook-output/julia_Tutorial.html
Normal file
15547
docs/src/notebook-output/julia_Tutorial.html
Normal file
File diff suppressed because one or more lines are too long
16150
docs/src/notebook-output/julia_async.html
Normal file
16150
docs/src/notebook-output/julia_async.html
Normal file
File diff suppressed because one or more lines are too long
17337
docs/src/notebook-output/julia_basics.html
Normal file
17337
docs/src/notebook-output/julia_basics.html
Normal file
File diff suppressed because one or more lines are too long
16868
docs/src/notebook-output/julia_distributed.html
Normal file
16868
docs/src/notebook-output/julia_distributed.html
Normal file
File diff suppressed because one or more lines are too long
16913
docs/src/notebook-output/julia_intro.html
Normal file
16913
docs/src/notebook-output/julia_intro.html
Normal file
File diff suppressed because one or more lines are too long
2126
docs/src/notebooks/jacobi_2D.ipynb
Normal file
2126
docs/src/notebooks/jacobi_2D.ipynb
Normal file
File diff suppressed because one or more lines are too long
739
docs/src/notebooks/julia_async.ipynb
Normal file
739
docs/src/notebooks/julia_async.ipynb
Normal file
@ -0,0 +1,739 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "f64b009a",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"<img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/VU_logo.png/800px-VU_logo.png?20161029201021\" width=\"350\">\n",
|
||||
"\n",
|
||||
"### Programming large-scale parallel systems\n",
|
||||
"### Lectures on Julia for HPC\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"# Asynchronous programming in Julia\n",
|
||||
"\n",
|
||||
"by Francesc Verdugo (VU Amsterdam)\n",
|
||||
"\n",
|
||||
"Version fall 2022"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "bf68ad38",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Contents\n",
|
||||
"\n",
|
||||
"In this notebook, we will learn the basics of asynchronous programming in Julia. In particular, we will learn about:\n",
|
||||
"\n",
|
||||
"- Tasks\n",
|
||||
"- Channels\n",
|
||||
"\n",
|
||||
"Understanding these concepts is important to learn later distributed computing."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "caf64254",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Tasks\n",
|
||||
"\n",
|
||||
"### Creating a task\n",
|
||||
"\n",
|
||||
"A task is a piece of computation work that can be run asynchronously (i.e., that can be run in the background). To create a task, we first need to create a function that represents the work to be done in the task. In next cell, we generate a task that generates and sums two matrices."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "fe668cb1",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"function work()\n",
|
||||
" println(\"Starting work\")\n",
|
||||
" sleep(7)\n",
|
||||
" a = rand(3,3)\n",
|
||||
" b = rand(3,3)\n",
|
||||
" r = a + b\n",
|
||||
" println(\"Finishing work\")\n",
|
||||
" r\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "67ee0328",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"t = Task(work)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "e459c5c2",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Scheduling a task\n",
|
||||
"\n",
|
||||
"The task has been created, but the corresponding work has not started. Note that we do not see any output from function `work` yet. To run the task we need to schedule it."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "8778c199",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"schedule(t)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "f1fb9283",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Fetching the task result\n",
|
||||
"\n",
|
||||
"The task has been executed, but we do not see the result. To get the result we need to fetch it."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "0c7b626e",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"fetch(t)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "fedbbd71",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Tasks run asynchronously\n",
|
||||
"\n",
|
||||
"It is important to note that tasks run asynchronously. To illustrate this let's create and schedule a new task."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "4ccc996c",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"t = Task(work)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "015bea27",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"schedule(t)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "5ec0718e",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"Note that while the task is running we can execute Julia code. To check this, execute the next two cells while the task is running."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "a70fcbe8",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"sin(4π)*exp(-0.1)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "6def444b",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"1 + 1"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "d483d4d0",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"How is this possible? Tasks run in the brackground and this particular task is sleeping for most of the time. Thus, it is possible to use the current Julia process for other operations while the tasks is sleeping."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "910323fd",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Tasks do not run in parallel\n",
|
||||
"\n",
|
||||
"It is also important to note that tasks do not run in parallel. We were able to run code while previous tasks was running because the task was idling most of the time. If the task does actual work, the current process will be busy running this task and it is likely that we cannot run other code at the same time. Let's illustrate this with an example. The following code computes an approximation of $\\pi$ using [Leibniz formula](https://en.wikipedia.org/wiki/Leibniz_formula_for_pi). The quality of the approximation increases with the value of `n`."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "b53ac640",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"function compute_π(n)\n",
|
||||
" s = 1.0\n",
|
||||
" for i in 1:n\n",
|
||||
" s += (isodd(i) ? -1 : 1) / (i*2+1)\n",
|
||||
" end\n",
|
||||
" 4*s\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "7614df94",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
" Call this function with a large number. Note that it will take some time."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "63f2aec3",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"compute_π(4_000_000_000)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "840ff590",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"Create a task that performs this computation."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "f16ade6c",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"fun = () -> compute_π(4_000_000_000)\n",
|
||||
"t = Task(fun)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "60c2567c",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"Schedule the tasks and then try to execute the 2nd cell bellow. Note that the current process will be busy running the task."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "1f28a388",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"schedule(t)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "52e060e7",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"1+1"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "25048665",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Tasks take a function with no arguments\n",
|
||||
"\n",
|
||||
"This function needs to have zero arguments, but it can capture variables if needed. If we try to create a task with a function that has arguments, it will result in an error when we schedule it."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "87397749",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"add(a,b) = a + b"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "e99766c7",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"t = Task(add)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "1a785bae",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"schedule(t)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "ebfce725",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"If we need, we can capture variables in the function to be run by the task as shown in the next cells."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "06f54fa0",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"a = rand(3,3)\n",
|
||||
"b = rand(3,3);"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "4c9e586e",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"fun = () -> a + b\n",
|
||||
"t = Task(fun)\n",
|
||||
"schedule(t)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "cd829a64",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Useful macro: `@async`\n",
|
||||
"\n",
|
||||
"So far, we have created tasks using low-level functions, but there are more convenient ways of creating and scheduling tasks. For instance using the `@async` macro. This macro is used to run a piece of code asynchronously. Under the hood it puts the code in an anonymous function, creates a task, and schedules it. For instance, the next cell is equivalent to previous one."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "9b5152d1",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@async a + b"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "ac3262d8",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Another useful macro: `@sync`\n",
|
||||
"\n",
|
||||
"This macro is used to wait for all the tasks created with `@async` in a given block of code. "
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "ef2e49f9",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@sync begin\n",
|
||||
" @async sleep(3)\n",
|
||||
" @async sleep(4)\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "98f0d685",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Channels\n",
|
||||
"\n",
|
||||
"### Sending data between tasks\n",
|
||||
"\n",
|
||||
"Julia provides channels as a way to send data between tasks. A channel is like a FIFO queue in which tasks can put and take values from. In next example, we create a channel and a task that puts five values into the channel. Finally, the task closes the channel."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "b88d5308",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"chnl = Channel{Int}()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "3421c7a6",
|
||||
"metadata": {
|
||||
"scrolled": true
|
||||
},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@async begin\n",
|
||||
" for i in 1:5\n",
|
||||
" put!(chnl,i)\n",
|
||||
" end\n",
|
||||
" close(chnl)\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "1df0508c",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"By executing next cell several times, we will get the values from the channel. We are indeed communicating values from two different tasks. If we execute the cell more than 5 times, it will raise an error since the channel is closed. "
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "64b9436e",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"take!(chnl)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "757a1b07",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Channels are iterable\n",
|
||||
"\n",
|
||||
"Instead of taking values from a channel until an error occurs, we can also iterate over the channel in a for loop until the channel is closed."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "2fc22dfa",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"chnl = Channel{Int}()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "fa62a4df",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@async begin\n",
|
||||
" for i in 1:5\n",
|
||||
" put!(chnl,i)\n",
|
||||
" end\n",
|
||||
" close(chnl)\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "e511e19b",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"for i in chnl\n",
|
||||
" @show i\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "b1a2a557",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Calls to `put!` and `take!` are blocking\n",
|
||||
"\n",
|
||||
"Note that `put!` and `take!` are blocking operations. Calling `put!` blocks the tasks until another task calls `take!` and viceversa. Thus, we need at least 2 tasks for this to work. If we call `put!` and `take!` from the same task, it will result in a dead lock. We have added a print statement to previous example. Run it again and note how `put!` blocks until we call `take!`. "
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "f34373ca",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"chnl = Channel{Int}()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "bfde2ecd",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@async begin\n",
|
||||
" for i in 1:5\n",
|
||||
" put!(chnl,i)\n",
|
||||
" println(\"I have put $i\")\n",
|
||||
" end\n",
|
||||
" close(chnl)\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "5830659d",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"take!(chnl)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "006140bd",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Buffered channels\n",
|
||||
"\n",
|
||||
"We can be a bit more flexible and use a buffered channel. In this case, `put!` will block only if the channel is full and `take!` will block if the channel is empty. We repeat previous example, but with a buffered channel of size 2. Note that we can call `put!` until the channel is full. At this point, we need to wait to until we call `take!` which removes an item from the channel, making room for a new item."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "dfe06b5f",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"buffer_size = 2\n",
|
||||
"chnl = Channel{Int}(buffer_size)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "6289bc2e",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@async begin\n",
|
||||
" for i in 1:5\n",
|
||||
" put!(chnl,i)\n",
|
||||
" println(\"I have put $i\")\n",
|
||||
" end\n",
|
||||
" close(chnl)\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "2a87cd5f",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"take!(chnl)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "2a23b1c3",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Questions\n",
|
||||
"\n",
|
||||
"How long the next cells will take each?\n",
|
||||
"\n",
|
||||
"### Q1 (Asynchronous.ipynb)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "dd45ae08",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@time compute_π(100_000_000)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "18d6cfe3",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@time for i in 1:10\n",
|
||||
" compute_π(100_000_000)\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "5f19d38c",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Q2 (Asynchronous.ipynb)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "dac0c92a",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@time for i in 1:10\n",
|
||||
" @async compute_π(100_000_000)\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "5041c355",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Q3 (Asynchronous.ipynb)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "c06dc4a5",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@time @sync for i in 1:10\n",
|
||||
" @async compute_π(100_000_000)\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "841b690e",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Q4 (Asynchronous.ipynb)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "6ac116bb",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"buffer_size = 4\n",
|
||||
"chnl = Channel{Int}(buffer_size)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "25363a90",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@time begin\n",
|
||||
" put!(chnl,3)\n",
|
||||
" i = take!(chnl)\n",
|
||||
" sleep(i)\n",
|
||||
"end"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "df663f11",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Q5 (Asynchronous.ipynb)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "9abeed40",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"chnl = Channel{Int}()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "8e8428ce",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"@time begin\n",
|
||||
" put!(chnl,3)\n",
|
||||
" i = take!(chnl)\n",
|
||||
" sleep(i)\n",
|
||||
"end"
|
||||
]
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Julia 1.8.5",
|
||||
"language": "julia",
|
||||
"name": "julia-1.8"
|
||||
},
|
||||
"language_info": {
|
||||
"file_extension": ".jl",
|
||||
"mimetype": "application/julia",
|
||||
"name": "julia",
|
||||
"version": "1.8.5"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 5
|
||||
}
|
||||
1566
docs/src/notebooks/julia_basics.ipynb
Normal file
1566
docs/src/notebooks/julia_basics.ipynb
Normal file
File diff suppressed because it is too large
Load Diff
1281
docs/src/notebooks/julia_distributed.ipynb
Normal file
1281
docs/src/notebooks/julia_distributed.ipynb
Normal file
File diff suppressed because one or more lines are too long
1255
docs/src/notebooks/julia_intro.ipynb
Normal file
1255
docs/src/notebooks/julia_intro.ipynb
Normal file
File diff suppressed because one or more lines are too long
684
docs/src/notebooks/julia_jacobi.ipynb
Normal file
684
docs/src/notebooks/julia_jacobi.ipynb
Normal file
File diff suppressed because one or more lines are too long
505
docs/src/notebooks/julia_tutorial.ipynb
Normal file
505
docs/src/notebooks/julia_tutorial.ipynb
Normal file
@ -0,0 +1,505 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"\n",
|
||||
"<img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/VU_logo.png/800px-VU_logo.png?20161029201021\" width=\"350\">\n",
|
||||
"\n",
|
||||
"### Programming large-scale parallel systems\n",
|
||||
"### Lectures on Julia for HPC\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"# Tutorial: Getting started with Julia\n",
|
||||
"\n",
|
||||
"by Francesc Verdugo (VU Amsterdam)\n",
|
||||
"\n",
|
||||
"Version fall 2022"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Contents\n",
|
||||
"\n",
|
||||
"- Using the Julia REPL\n",
|
||||
"- Running serial and parallel code\n",
|
||||
"- Installing and managing packages"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Introduction\n",
|
||||
"\n",
|
||||
"Julia has its own way of running code and using packages. Many educational sources about Julia assume that you have this basic knowledge, which can be confusing to new users. In this lesson, we will learn these basic skills so that you can start learning more on Julia."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Preliminaries\n",
|
||||
"\n",
|
||||
"This is a tutorial. To follow it:\n",
|
||||
"\n",
|
||||
"- Download and install Julia from https://julialang.org/\n",
|
||||
"- Download and install VSCode and its Julia extension. How to: https://www.julia-vscode.org/docs/dev/gettingstarted/\n",
|
||||
"- Continue reading this document \n",
|
||||
"\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## The Julia REPL\n",
|
||||
"\n",
|
||||
"There are several ways of opening Julia depending on your operating system and your IDE, but it is usually as simple as launching the Julia app. With VSCode, open a folder (File > Open Folder). Then, press `Ctrl`+`Shift`+`P` to open the command bar, and execute `Julia: Start REPL`. If this does not work, make sure you have the Julia extension for VSCode installed. Independently of the method you use, opening Julia results in a window with some text ending with:\n",
|
||||
"\n",
|
||||
"```\n",
|
||||
"julia> \n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"You have just opened the Julia *read-evaluate-print loop*, or simply the Julia *REPL*. Congrats! You will spend most of time using the REPL, when working in Julia. The REPL is a console waiting for user input. Just as in other consoles, the string of text right before the input area (`julia>` in the case) is called the *command prompt* or simply the *prompt*.\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"The usage is as follows:\n",
|
||||
"- You write some input\n",
|
||||
"- press enter\n",
|
||||
"- you get the output\n",
|
||||
"\n",
|
||||
"For instance, try this\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> 1 + 1\n",
|
||||
"```"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Hello world!\n",
|
||||
"\n",
|
||||
"A \"Hello world\" example looks like this in Julia\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> println(\"Hello, world!\")\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"Try to run it in the REPL."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Help mode\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"Curious about what function `println` does? Enter into *help* mode to look into the documentation. This is done by typing a question mark (`?`) into the inut field:\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> ?\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"After typing `?`, the command prompt changes to `help?>`. It means we are in help mode. Now, we can type a function name to see its documentation.\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"help?> println\n",
|
||||
"```"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Package and shell modes\n",
|
||||
"\n",
|
||||
"The REPL comes with two more modes, namely *package* and *shell* modes. To enter package mode type\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> ]\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"Package mode is used to install and manage packages. We are going to discuss the package mode in greater detail later. To return back to normal mode press the backspace key several times.\n",
|
||||
"\n",
|
||||
"To enter shell mode type semicolon (`;`)\n",
|
||||
"```julia\n",
|
||||
"julia> ;\n",
|
||||
"```\n",
|
||||
"The prompt should have changed to `shell>` indicating that we are in shell mode. Now you can type commands that you would normally do on your system command line. For instance, \n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"shell> ls\n",
|
||||
"```\n",
|
||||
"will display the contents of the current folder in Mac or Linux. Using shell mode in Windows is not straightforward, and thus not recommended for beginners.\n",
|
||||
"\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Running more complex code\n",
|
||||
"\n",
|
||||
"Real-world Julia programs are not typed in the REPL in practice. They are written in one or more files and *included* in the REPL. To try this, create a new file called `hello.jl`, write the code of the \"Hello world\" example above, and save it. If you are using VSCode, you can create the file using File > New File > Julia File. Once the file is saved with the name `hello.jl`, execute it as follows\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> include(\"hello.jl\")\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"<div class=\"alert alert-block alert-warning\">\n",
|
||||
"<b>Warning:</b> Make sure that the file <code>\"hello.jl\"</code> is located in the current working directory of your Julia session. You can query the current directory with function <code>pwd()</code>. You can change to another directory with function <code>cd()</code> if needed. Also, make sure that the file extension is <code>.jl</code>.\n",
|
||||
"</div>\n",
|
||||
"\n",
|
||||
"The recommended way of running Julia code is using the REPL as we did. But it is also possible to run code directly from the system command line. To this end, open a terminal and call Julia followed buy the path to the file containing the code you want to execute.\n",
|
||||
"\n",
|
||||
"```\n",
|
||||
"$ julia hello.jl\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"Previous line assumes that you have Julia properly installed in the system and that is usable from the terminal. In UNIX systems (Linux and Mac), the Julia binary needs to be in one of the directories listed in the `PATH` environment variable. To check that Julia is properly installed, you can use\n",
|
||||
"\n",
|
||||
"```\n",
|
||||
"$ julia --version\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"If this runs without error and you see a version number, you are good to go!\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"<div class=\"alert alert-block alert-info\">\n",
|
||||
"<b>Tip:</b> In this tutorial, when a code snipped starts with <code>$</code>, it should be run in the terminal. Otherwise, the code is to be run in the Julia REPL.\n",
|
||||
"</div>\n",
|
||||
"\n",
|
||||
"<div class=\"alert alert-block alert-info\">\n",
|
||||
"<b>Tip:</b> Avoid calling Julia code from the terminal, use the Julia REPL instead! Each time you call Julia from the terminal, you start a fresh Julia session and Julia will need to compile your code from scratch. This can be time consuming for large projects. In contrast, if you execute code in the REPL, Julia will compile code incrementally, which is much faster. Running code in a cluster (like in DAS-5 for the Julia assignment) is among the few situations you need to run Julia code from the terminal.\n",
|
||||
"</div>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Running parallel code\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"Since we are in a parallel computing course, let's run a parallel \"hello world\" example in Julia. Open a Julia REPL and write \n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> using Distributed\n",
|
||||
"julia> @everywhere println(\"Hello, world! I am proc $(myid()) from $(nprocs())\")\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"Here, we are using the `Distributed` package, which is part of the Julia standard library that provides distributed memory parallel support. The code prints the process id and the number of processes in the current Julia session.\n",
|
||||
"\n",
|
||||
"You will provably only see output from 1 proces. We need to add more processes to run the example in parallel. This is done with the `addprocs` function.\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> addprocs(3)\n",
|
||||
"```\n",
|
||||
"We have added 3 new processes, plus the old one, we have 4 processes. Run the code again.\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> @everywhere println(\"Hello, world! I am proc $(myid()) from $(nprocs())\")\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"Now, you should see output from 4 processes.\n",
|
||||
"\n",
|
||||
"It is possible to specify the number of processes when starting Julia from the terminal with the `-p` argument (useful, e.g., when running in a cluster). If you launch Julia from the terminal as\n",
|
||||
"\n",
|
||||
"```\n",
|
||||
"$ julia -p 3\n",
|
||||
"```\n",
|
||||
"and then run \n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> @everywhere println(\"Hello, world! I am proc $(myid()) from $(nprocs())\")\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"You should get output from 4 processes as before.\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Installing packages\n",
|
||||
"\n",
|
||||
"One of the most useful features of Julia is its package manager. It allows one to install Julia packages in a straightforward and platform independent way. To illustrate this, let us consider the following parallel \"Hello world\" example.\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"Copy the following block of code into a new file named `\"hello_mpi.jl\"`\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"# file hello_mpi.jl\n",
|
||||
"using MPI\n",
|
||||
"MPI.Init()\n",
|
||||
"comm = MPI.COMM_WORLD\n",
|
||||
"rank = MPI.Comm_rank(comm)\n",
|
||||
"nranks = MPI.Comm_size(comm)\n",
|
||||
"println(\"Hello world, I am rank $rank of $nranks\")\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"As you can see from this example, one can access MPI from Julia in a clean way, without type annotations and other complexities of C/C++ code.\n",
|
||||
"\n",
|
||||
"Now, run the file from the REPL\n",
|
||||
"```julia\n",
|
||||
"julia> incude(\"hello_mpi.jl\")\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"It provably didn't work, right? Read the error message and note that the MPI package needs to be installed to run this code.\n",
|
||||
"\n",
|
||||
"To install a package, we need to enter *package* mode. Remember that we entered into help mode by typing `?`. Package mode is activated by typing `]`\n",
|
||||
"```julia\n",
|
||||
"julia> ]\n",
|
||||
"```\n",
|
||||
"At this point, the promp should have changed to `(@v1.8) pkg>` indicating that we are in package mode. The text between parenthesis indicates which is the active *project*, i.e., where packages are going to be installed. In this case, we are working with the global project associated with our Julia installation (which is Julia 1.8 in this example, but it can be another version in your case).\n",
|
||||
"\n",
|
||||
"To install the MPI package, type\n",
|
||||
"```julia\n",
|
||||
"(@v1.8) pkg> add MPI\n",
|
||||
"```\n",
|
||||
"Congrats, you have installed MPI!\n",
|
||||
"\n",
|
||||
"<div class=\"alert alert-block alert-info\">\n",
|
||||
" <b>Tip:</b> Many Julia package names end with <code>.jl</code>. This is just a way of signaling that a package is written in Julia. When using such packages, the <code>.jl</code> needs to be ommited. In this case, we have isntalled the <code>MPI.jl</code> package even though we have only typed <code>MPI</code> in the REPL.\n",
|
||||
"</div>\n",
|
||||
"\n",
|
||||
"<div class=\"alert alert-block alert-info\">\n",
|
||||
" <b>Tip:</b>\n",
|
||||
"The package you have installed it is the Julia interface to MPI, called <code>MPI.jl</code>. Note that it is not a MPI library by itself. It is just a thin wrapper between MPI and Julia. To use this interface, you need an actual MPI library installed in your system such as OpenMPI or MPICH. Julia downloads and installs a MPI library for you, but it is also possible to use a MPI library already available in your system. This is useful, e.g., when running on HPC clusters. See the documentation of <code>MPI.jl</code> for further details.\n",
|
||||
"</div>\n",
|
||||
"\n",
|
||||
"To check that the package was installed properly, exit package mode by pressing the backspace key several times, and run it again\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> incude(\"hello_mpi.jl\")\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"Now, it should work, but you provably get output from a single MPI rank only.\n",
|
||||
"\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Running MPI code\n",
|
||||
"\n",
|
||||
"To run MPI applications in parallel, you need a launcher like `mpiexec`. MPI codes written in Julia are not an exception to this rule. From the system terminal, you can run\n",
|
||||
"```\n",
|
||||
"$ mpiexec -np 4 julia hello_mpi.jl\n",
|
||||
"```\n",
|
||||
"But it will provably don't work since the version of `mpiexec` needs to match with the MPI version we are using from Julia. You can find the path to the `mpiexec` binary you need to use with these commands\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> using MPI\n",
|
||||
"julia> MPI.mpiexec_path\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"and then try again\n",
|
||||
"```\n",
|
||||
"$ /path/to/my/mpiexec -np 4 julia hello_mpi.jl\n",
|
||||
"```\n",
|
||||
"with your particular path.\n",
|
||||
"\n",
|
||||
"However, this is not very convenient. Don't worry if you could not make it work! A more elegant way to run MPI code is from the Julia REPL directly, by using these commands:\n",
|
||||
"```julia\n",
|
||||
"julia> using MPI\n",
|
||||
"julia> mpiexec(cmd->run(`$cmd -np 4 julia hello_mpi.jl`))\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"Now, you should see output from 4 ranks."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Installing packages locally\n",
|
||||
"\n",
|
||||
"We have installed the `MPI` package globally and it will be available in all Julia sessions. However, in some situations, we want to work with different versions of the same package or to install packages in an isolated way to avoid potential conflicts with other packages. This can be done by using local projects.\n",
|
||||
"\n",
|
||||
"A project is simply a folder in the hard disk. To use a particular folder as your project, you need to *activate* it. This is done by entering package mode and using the `activate` command followed by the path to the folder you want to activate.\n",
|
||||
"```julia\n",
|
||||
"(@v1.8) pkg> activate .\n",
|
||||
"```\n",
|
||||
" Previous command will activate the current working directory. Note that the dot `.` is indeed the path to the current folder.\n",
|
||||
" \n",
|
||||
"The prompt has changed to `(lessons) pkg>` indicating that we are in the project within the `lessons` folder. The particular folder name can be different in your case.\n",
|
||||
"\n",
|
||||
"<div class=\"alert alert-block alert-info\">\n",
|
||||
" <b>Tip:</b> You can activate a project directly when opening Julia from the terminal using the <code>--project</code> flag. The command <code>$ julia --project=.</code> will open Julia and activate a project in the current directory. You can also achieve the same effect by setting the environment variable <code>JULIA_PROJECT</code> with the path of the folder you want to activate.\n",
|
||||
" </div>\n",
|
||||
" \n",
|
||||
" \n",
|
||||
" <div class=\"alert alert-block alert-info\">\n",
|
||||
" <b>Tip:</b> The active project folder and the current working directory are two independent concepts! For instance, <code>(@v1.8) pkg> activate folderB</code> and then <code>julia> cd(\"folderA\")</code>, will activate the project in <code>folderB</code> and change the current working directory to <code>folderA</code>.\n",
|
||||
" \n",
|
||||
"</div>\n",
|
||||
"\n",
|
||||
"At this point all package-related operations will be local to the new project. For instance, install the `DataFrames` package.\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"(lessons) pkg> add DataFrames\n",
|
||||
"```\n",
|
||||
"Use the package to check that it is installed\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> using DataFrames\n",
|
||||
"julia> DataFrame(a=[1,2],b=[3,4])\n",
|
||||
"```\n",
|
||||
"Now, we can return to the global project to check that `DataFrames` has not been installed there. To return to the global environment, use `activate` without a folder name.\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"(lessons) pkg> activate\n",
|
||||
"```\n",
|
||||
"The prompt is again `(@v1.8) pkg>`\n",
|
||||
"\n",
|
||||
"Now, try to use `DataFrames`.\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> using DataFrames\n",
|
||||
"julia> DataFrame(a=[1,2],b=[3,4])\n",
|
||||
"```\n",
|
||||
"You should get an error or a warning unless you already had `DataFrames` installed globally.\n",
|
||||
"\n",
|
||||
"\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Project and Manifest files\n",
|
||||
"\n",
|
||||
"The information about a project is stored in two files `Project.toml` and `Manifest.toml`.\n",
|
||||
"\n",
|
||||
"- `Project.toml` contains the packages explicitly installed (the direct dependencies)\n",
|
||||
"\n",
|
||||
"- `Manifest.toml` contains direct and indirect dependencies along with the concrete version of each package.\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"In other words, `Project.toml` contains the packages relevant for the user, whereas `Manifest.toml` is the detailed snapshot of all dependencies. The `Manifest.toml` can be used to reproduce the same envinonment in another machine.\n",
|
||||
"\n",
|
||||
"You can see the path to the current `Project.toml` file by using the `status` operator (or `st` in its short form) while in package mode\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"(@v1.8) pkg> status\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"The information about the `Manifest.toml` can be inspected by passing the `-m` flag.\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"(@v1.8) pkg> status -m\n",
|
||||
"```"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Installing packages from a project file\n",
|
||||
"\n",
|
||||
"Project files can be used to install lists of packages defined by others. E.g., to install all the dependencies of a Julia application.\n",
|
||||
"\n",
|
||||
"Assume that a colleague has sent to you a `Project.toml` file with this content:\n",
|
||||
"\n",
|
||||
"```\n",
|
||||
"[deps]\n",
|
||||
"BenchmarkTools = \"6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf\"\n",
|
||||
"DataFrames = \"a93c6f00-e57d-5684-b7b6-d8193f3e46c0\"\n",
|
||||
"MPI = \"da04e1cc-30fd-572f-bb4f-1f8673147195\"\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"Copy the contents of previous code block into a file called `Project.toml` and place it in an empty folder named `newproject`. It is important that the file is named `Project.toml`. You can create a new folder from the REPL with \n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> mkdir(\"newproject\")\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"To install all the packages registered in this file you need to activate the folder containing your `Project.toml` file\n",
|
||||
"```julia\n",
|
||||
"(@v1.8) pkg> activate newproject\n",
|
||||
"```\n",
|
||||
"and then *instantiating* it\n",
|
||||
"```julia\n",
|
||||
"(newproject) pkg> instantiate\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"The instantiate command will download and install all listed packages and their dependencies in just one click."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Getting help in package mode\n",
|
||||
"\n",
|
||||
"You can get help about a particular package operator by writing `help` in front of it\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"(@v1.8) pkg> help activate\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"You can get an overview of all package commands by typing `help` alone\n",
|
||||
"```julia\n",
|
||||
"(@v1.8) pkg> help\n",
|
||||
"```"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Package operations in Julia code\n",
|
||||
"\n",
|
||||
"In some situations it is required to use package commands in Julia code, e.g., to automatize installation and deployment of Julia applications. This can be done using the `Pkg` package. For instance\n",
|
||||
"\n",
|
||||
"```julia\n",
|
||||
"julia> using Pkg\n",
|
||||
"julia> Pkg.status()\n",
|
||||
"```\n",
|
||||
"is equivalent to call `status` in package mode.\n",
|
||||
"```julia\n",
|
||||
"(@v1.8) pkg> status\n",
|
||||
"```"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## Conclusion\n",
|
||||
"\n",
|
||||
"We have learned the basics of how to work with Julia. Now, you should be ready to start learning more on the language. If you want to further dig into the topics we have covered here, you can take a look and the following links\n",
|
||||
"\n",
|
||||
"- Julia Manual https://docs.julialang.org/en/v1/manual/getting-started/\n",
|
||||
"- Package manager https://pkgdocs.julialang.org/v1/getting-started/\n",
|
||||
"\n",
|
||||
"If you want to interact with the Julia community on discourse, sign in at https://discourse.julialang.org/"
|
||||
]
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Julia 1.8.0",
|
||||
"language": "julia",
|
||||
"name": "julia-1.8"
|
||||
},
|
||||
"language_info": {
|
||||
"file_extension": ".jl",
|
||||
"mimetype": "application/julia",
|
||||
"name": "julia",
|
||||
"version": "1.8.0"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 2
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user