File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -84,11 +84,10 @@ LinearSolve.jl specifically tests with the following cases:
84
84
85
85
!!! note
86
86
87
-
88
- Choosing the most specific matrix structure that matches your specific system will give you the most performance.
89
- Thus if your matrix is symmetric, specifically building with ` Symmetric(A) ` will be faster than simply using ` A ` ,
90
- and will generally lead to better automatic linear solver choices. Note that you can also choose the type for ` b ` ,
91
- but generally a dense vector will be the fastest here and many solvers will not support a sparse ` b ` .
87
+ Choosing the most specific matrix structure that matches your specific system will give you the most performance.
88
+ Thus if your matrix is symmetric, specifically building with ` Symmetric(A) ` will be faster than simply using ` A ` ,
89
+ and will generally lead to better automatic linear solver choices. Note that you can also choose the type for ` b ` ,
90
+ but generally a dense vector will be the fastest here and many solvers will not support a sparse ` b ` .
92
91
93
92
## Using Matrix-Free Operators via SciMLOperators.jl
94
93
You can’t perform that action at this time.
0 commit comments