File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
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
@@ -160,7 +159,6 @@ mfopA * sol.u - b
160
159
161
160
!!! note
162
161
163
-
164
- Note that not all methods can use a matrix-free operator. For example, ` LS.LUFactorization() ` requires a matrix. If you use an
165
- invalid method, you will get an error. The methods particularly from KrylovJL are the ones preferred for these cases
166
- (and are defaulted to).
162
+ Note that not all methods can use a matrix-free operator. For example, ` LS.LUFactorization() ` requires a matrix. If you use an
163
+ invalid method, you will get an error. The methods particularly from KrylovJL are the ones preferred for these cases
164
+ (and are defaulted to).
You can’t perform that action at this time.
0 commit comments