Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
willow-ahrens committed Oct 23, 2024
1 parent 64f22d4 commit 14209b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/tensors/levels/dense_rle_levels.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
RunListLevel{[Ti=Int], [Ptr, Right]}(lvl, [dim], [merge = true])
The dense RLE level represent runs of equivalent slices `A[:, ..., :, i]`. A
The RunListLevel represent runs of equivalent slices `A[:, ..., :, i]`. A
sorted list is used to record the right endpoint of each run. Optionally, `dim`
is the size of the last dimension.
Expand Down
2 changes: 1 addition & 1 deletion src/tensors/levels/sparse_interval_levels.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
SparseIntervalLevel{[Ti=Int], [Ptr, Left, Right]}(lvl, [dim])
The single RLE level represent runs of equivalent slices `A[:, ..., :, i]`
The SparseIntervalLevel represent runs of equivalent slices `A[:, ..., :, i]`
which are not entirely [`fill_value`](@ref). A main difference compared to SparseRunList
level is that SparseInterval level only stores a 'single' non-fill run. It emits
an error if the program tries to write multiple (>=2) runs into SparseInterval.
Expand Down
2 changes: 1 addition & 1 deletion src/tensors/levels/sparse_rle_levels.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
SparseRunListLevel{[Ti=Int], [Ptr, Left, Right]}(lvl, [dim]; [merge = true])
The sparse RLE level represent runs of equivalent slices `A[:, ..., :, i]`
The SparseRunListLevel represent runs of equivalent slices `A[:, ..., :, i]`
which are not entirely [`fill_value`](@ref). A sorted list is used to record the
left and right endpoints of each run. Optionally, `dim` is the size of the last dimension.
Expand Down

0 comments on commit 14209b9

Please sign in to comment.