Skip to content

Commit 10a8c6b

Browse files
committed
codespell
1 parent 63e1283 commit 10a8c6b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/genericextendablesparsematrixcsc.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Single threaded extendable sparse matrix parametrized by sparse matrix extension.
55
66
Fields:
7-
- `cscmatrix`: a SparseMatrixCSC containg existing matrix entries
7+
- `cscmatrix`: a SparseMatrixCSC containing existing matrix entries
88
- `xmatrix`: instance of an [`AbstractSparseMatrixExtension`](@ref) which is used to collect new entries
99
"""
1010
mutable struct GenericExtendableSparseMatrixCSC{Tm <: AbstractSparseMatrixExtension, Tv, Ti <: Integer} <: AbstractExtendableSparseMatrixCSC{Tv, Ti}

src/genericmtextendablesparsematrixcsc.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Extendable sparse matrix parametrized by sparse matrix extension allowing multit
66
parallel matrix-vector multiplication.
77
88
Fields:
9-
- `cscmatrix`: a SparseMatrixCSC containg existing matrix entries
9+
- `cscmatrix`: a SparseMatrixCSC containing existing matrix entries
1010
- `xmatrices`: vector of instances of [`AbstractSparseMatrixExtension`](@ref) used to collect new entries
1111
- `colparts`: vector describing colors of the partitions of the unknowns
1212
- `partnodes`: vector describing partition of the unknowns
1313
1414
It is assumed that the set of unknowns is partitioned, and the partitioning is colored in such a way that
15-
several partitions of the same color can be handeled by different threads, both during matrix assembly (which
16-
in general would use a partition of e.g. finite elements compatible to the partioning of the nodes) and during
15+
several partitions of the same color can be handled by different threads, both during matrix assembly (which
16+
in general would use a partition of e.g. finite elements compatible to the partitioning of the nodes) and during
1717
matrix-vector multiplication. This approach is compatible with the current choice of the standard Julia
1818
sparse ecosystem which prefers compressed colume storage (CSC) over compressed row storage (CSR).
1919

0 commit comments

Comments
 (0)