Miscellaneous typos fixed

This commit is contained in:
VictorianHues
2024-09-30 23:14:53 +02:00
parent 024429bceb
commit 82cfa1d44b
8 changed files with 32 additions and 32 deletions

View File

@@ -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."
]
},
{