From 14dc4b03e8c71c5b9815cb4c02366e19650508ad Mon Sep 17 00:00:00 2001 From: angerpointnerd <102872423+angerpointnerd@users.noreply.github.com> Date: Sat, 26 Apr 2025 09:50:13 +0200 Subject: [PATCH] Fix linked image in accelerating_choices.md The link to the performance comparison in the "sparse solvers" section showed the same image from the "dense solvers" section. --- docs/src/tutorials/accelerating_choices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/accelerating_choices.md b/docs/src/tutorials/accelerating_choices.md index 9816e25da..584282f88 100644 --- a/docs/src/tutorials/accelerating_choices.md +++ b/docs/src/tutorials/accelerating_choices.md @@ -64,7 +64,7 @@ Sparse linear solvers are not as dependent on the CPU but highly dependent on th is being solved. For example, this is for a 1D laplacian vs a 3D laplacian, changing N to make smaller and bigger versions: -![Sparse Linear Solve Benchmarks](../assets/dense_linear_solves.png) +![Sparse Linear Solve Benchmarks](../assets/sparse_linear_solves.png) Notice that the optimal linear solver changes based on problem (i.e. sparsity pattern) and size. LinearSolve.jl just uses a very simple "if small then use KLU and if large use UMFPACK", which