diff --git a/dev/.documenter-siteinfo.json b/dev/.documenter-siteinfo.json index cd18f67..11a06d9 100644 --- a/dev/.documenter-siteinfo.json +++ b/dev/.documenter-siteinfo.json @@ -1 +1 @@ -{"documenter":{"julia_version":"1.10.5","generation_timestamp":"2024-09-30T15:25:09","documenter_version":"1.7.0"}} \ No newline at end of file +{"documenter":{"julia_version":"1.10.5","generation_timestamp":"2024-10-01T05:36:31","documenter_version":"1.7.0"}} \ No newline at end of file diff --git a/dev/LEQ.ipynb b/dev/LEQ.ipynb index 5444139..93a5af1 100644 --- a/dev/LEQ.ipynb +++ b/dev/LEQ.ipynb @@ -103,7 +103,7 @@ "### Problem statement\n", "\n", "Let us consider a system of linear equations written in matrix form $Ax=b$, where $A$ is a nonsingular square matrix, and $x$ and $b$ are vectors. $A$ and $b$ are given, and $x$ is unknown. The goal of Gaussian elimination is to transform the system $Ax=b$, into a new system $Ux=c$ such that\n", - "- both system have the same solution vector $x$,\n", + "- both systems have the same solution vector $x$,\n", "- the matrix $U$ of the new system is *upper triangular* with unit diagonal, namely $U_{ii} = 1$ and $U_{ij} = 0$ for $i>j$.\n", "\n", "\n", @@ -398,7 +398,7 @@ "source": [ "### Data partition\n", "\n", - "Let start considering a row-wise block partition, as we did in previous algorithms.\n", + "Let's start considering a row-wise block partition, as we did in previous algorithms.\n", "\n", "In the figure below, we use different colors to illustrate which entries are assigned to a CPU. All entries with the same color are assigned to the same CPU." ] @@ -454,7 +454,7 @@ "Definition: *Load imbalance*: is the problem when work is not equally distributed over all processes and consequently some processes do more work than others.\n", "\n", "\n", - "Having processors waiting for others is a waist of computational resources and affects negatively parallel speedups. The optimal speedup (speedup equal to the number of processors) assumes that the work is perfectly parallel and that it is evenly distributed. If there is load imbalance, the last assumption is not true anymore and the speedup will be suboptimal.\n" + "Having processors waiting for others is a waste of computational resources and affects negatively parallel speedups. The optimal speedup (speedup equal to the number of processors) assumes that the work is perfectly parallel and that it is evenly distributed. If there is load imbalance, the last assumption is not true anymore and the speedup will be suboptimal.\n" ] }, { diff --git a/dev/LEQ/index.html b/dev/LEQ/index.html index 26dcf4d..0ceb0b1 100644 --- a/dev/LEQ/index.html +++ b/dev/LEQ/index.html @@ -14,4 +14,4 @@ var myIframe = document.getElementById("notebook"); iFrameResize({log:true}, myIframe); }); -
Settings
This document was generated with Documenter.jl version 1.7.0 on Monday 30 September 2024. Using Julia version 1.10.5.