Skip to content

Commit

Permalink
mention other packed formats
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarthur committed Jan 19, 2022
1 parent 128ea14 commit 2e6a6f9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ SymmetricFormats.jl defines the `SymmetricPacked` type which concatenates the
columns of either the upper or lower triangle into a vector thereby using
only a little more than half the memory.

Other formats to efficiently store symmetric matrices, which
are not (yet) implemented here, include recursive packed (RP;
Andersen et al 2001, 2002), square block packed (SBP; Gustavson
2003), block packed hybrid (BPH; Andersen et al 2005, Gustavson et
al 2007), and rectangular full packed (RFP; Gustavson et al 2009). See
[GenericLinearAlgebra.jl](https://github.com/JuliaLinearAlgebra/GenericLinearAlgebra.jl)
for an Julian implementation of RFP.

```
julia> using SymmetricFormats
Expand Down

2 comments on commit 2e6a6f9

@bjarthur
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/52804

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 2e6a6f9159de1c7f46233e258d9dee19927a0b40
git push origin v0.1.0

Please sign in to comment.