Minor changes

This commit is contained in:
Gelieza K 2024-01-12 11:41:40 +01:00
parent 9b8dcf4331
commit 7b4621e166
4 changed files with 59 additions and 4339 deletions

File diff suppressed because one or more lines are too long

View File

@ -1330,7 +1330,7 @@
], ],
"metadata": { "metadata": {
"kernelspec": { "kernelspec": {
"display_name": "Julia 1.9.0", "display_name": "Julia 1.9.1",
"language": "julia", "language": "julia",
"name": "julia-1.9" "name": "julia-1.9"
}, },
@ -1338,7 +1338,7 @@
"file_extension": ".jl", "file_extension": ".jl",
"mimetype": "application/julia", "mimetype": "application/julia",
"name": "julia", "name": "julia",
"version": "1.9.0" "version": "1.9.1"
} }
}, },
"nbformat": 4, "nbformat": 4,

View File

@ -219,10 +219,10 @@
"metadata": {}, "metadata": {},
"source": [ "source": [
"<div class=\"alert alert-block alert-info\">\n", "<div class=\"alert alert-block alert-info\">\n",
"<b>Note:</b> The matrix-matrix multiplication naively implemented with 3 nested loops as above is known to be very inefficient (memory bound). Libraries such as BLAS provide much more efficient implementations, which are the ones used in practice (e.g., by the `*` operator in Julia). We consider, our hand-written implementation as a simple way of expressing the algorithm we are interested in.\n", "<b>Note:</b> The matrix-matrix multiplication naively implemented with 3 nested loops as above is known to be very inefficient (memory bound). Libraries such as BLAS provide much more efficient implementations, which are the ones used in practice (e.g., by the `*` operator in Julia). We consider our hand-written implementation as a simple way of expressing the algorithm we are interested in.\n",
"</div>\n", "</div>\n",
"\n", "\n",
"Run the following cell to compare the performance of our hand-written function with respect to the built in function `mul!`\n" "Run the following cell to compare the performance of our hand-written function with respect to the built in function `mul!`.\n"
] ]
}, },
{ {

File diff suppressed because one or more lines are too long