Skip to content

JuliaLinearAlgebra/MultiThreadedLU.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MultiThreadedLU.jl

A multi-threaded LU implementation.

Install and test:

using Pkg
Pkg.add(url="https://github.com/JuliaLinearAlgebra/MultiThreadedLU.jl")
Pkg.test("MultiThreadedLU")

Example:

using MultiThreadedLU, Random, LinearAlgebra

n = 1024
a = rand(n,n);
b = rand(n);
x = hpl_mt(a, b)
norm(a*x-b)

References

Husbands, Parry, and Katherine Yelick. "Multi-threading and one-sided communication in parallel LU factorization." In Proceedings of the 2007 ACM/IEEE Conference on Supercomputing, pp. 1-10. 2007.

See also

RecursiveFactorization.jl is a better optimized package and much more well tested. This package is mainly a proof of concept for an eventual large-scale distributed implementation.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages