Skip to content

Julia algorithms for randomized numerical linear algebra.

License

Notifications You must be signed in to change notification settings

RS-Coop/RandNLA.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RandNLA.jl: Randomized algorithms for numerical linear algebra

RandNLA.jl is a pure julia package for fundamental operations and state-of-the-art research. The core is lightweight, but a variety of extensions allow for easy plug-and-play use in other packages. This is still very much a work in progress, and a full roadmap is given in Roadmap.

License & Citation

All source code is made available under an MIT license. You can freely use and modify the code, without warranty, so long as you provide attribution to the authors. See LICENSE for the full text.

This repository can be cited using the GitHub action in the sidebar, or using the metadata in CITATION.cff.

Features

  • AbstractFloat support?
  • GPU support?
  • Sparse support?
  • Complex support?

Installation

This package can be installed just like any other Julia package. From the terminal, after starting the Julia REPL, run the following:

julia> ]
pkg> add RandNLA

Testing

To test the package, run the following command in the REPL:

using Pkg
Pkg.test(test_args=[<specific tests>])

Usage

Load the package as usual:

using RandNLA

Design Principles

  1. Provide a consolidated suite of algorithms, both well established and state of the art
  2. Interface nicely with other Julia linear algebra packages such as Krylov.jl
  3. Leverage Julia to provide efficient implementations while staying adaptable and updateable

References

Papers

Julia Packages

Python Packages

C++ Pacakges

Roadmap

  1. Basic Sketching
    • Agnostic to RNG, i.e. use AbstractRNG type
    • Left vs. right sketching
    • Explicit vs implicit, i.e. is the sketching opeartor realized
    • Dense sketching operators
      • Rademacher
      • Uniform
      • Gaussian
      • Haar
      • Can allow for abitrary distribution as well
      • Methods for constructing these distributions?
    • Sparse sketching opeartors
      • Short-axis
      • Long-axis
      • iid
  2. Property estimation
    • Trace
    • Norm
  3. Decompositions
    • SVD
    • Nystrom (positive definite and indefinite)
    • ID
    • CUR
  4. Advanced Sketching
    • Leverage-score sampling
  5. Advanced algorithms
    • Randomized finite differences

About

Julia algorithms for randomized numerical linear algebra.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages