mirror of
https://github.com/fverdugo/XM_40017.git
synced 2025-11-24 09:24:32 +01:00
Miscellaneous typos fixed
This commit is contained in:
@@ -137,7 +137,7 @@
|
||||
"\n",
|
||||
"\n",
|
||||
"<div class=\"alert alert-block alert-info\">\n",
|
||||
"<b>Tip:</b> We can also start new processes when launching Julia from the command line by suing the `-p` command-line argument. E.g., `$ julia -p 3 ` would launch Julia with 3 extra processes.\n",
|
||||
"<b>Tip:</b> We can also start new processes when launching Julia from the command line by using the `-p` command-line argument. E.g., `$ julia -p 3 ` would launch Julia with 3 extra processes.\n",
|
||||
"</div>\n"
|
||||
]
|
||||
},
|
||||
@@ -251,7 +251,7 @@
|
||||
"source": [
|
||||
"### Creating workers in other machines\n",
|
||||
"\n",
|
||||
"For large parallel computations, one typically needs to use different computers in parallel. Function `addprocs` also provides a low-level method to start workers in other machines. Next code example would create 3 workers in `server1` and 4 new workers in server `server2` (see figure below). Under the hood, Julia connects via ssh to the other machines and starts the new processes there. In order this to work, the local computer and the remote servers need to be properly configured (see the Julia manual for details). \n",
|
||||
"For large parallel computations, one typically needs to use different computers in parallel. Function `addprocs` also provides a low-level method to start workers in other machines. Next code example would create 3 workers in `server1` and 4 new workers in `server2` (see figure below). Under the hood, Julia connects via ssh to the other machines and starts the new processes there. In order this to work, the local computer and the remote servers need to be properly configured (see the Julia manual for details). \n",
|
||||
"\n",
|
||||
"\n",
|
||||
"\n",
|
||||
@@ -514,7 +514,7 @@
|
||||
"id": "10899cd4",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"### Another usefull macro: `@fetchfrom`\n",
|
||||
"### Another useful macro: `@fetchfrom`\n",
|
||||
"\n",
|
||||
"Macro `@fetchfrom` is the blocking version of `@spawnat`. It blocks and returns the corresponding result instead of a `Future` object. "
|
||||
]
|
||||
@@ -552,7 +552,7 @@
|
||||
"source": [
|
||||
"### Explicit data movement in `remotecall` / `fetch`\n",
|
||||
"\n",
|
||||
"When usig `remotecall` we send to the remote process a function and its arguments. In this example, we send function name `+` and matrices `a` and `b` to proc 4. When fetching the result we receive a copy of the matrix from proc 4."
|
||||
"When using `remotecall` we send to the remote process a function and its arguments. In this example, we send function name `+` and matrices `a` and `b` to proc 4. When fetching the result we receive a copy of the matrix from proc 4."
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user