mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
12f974ad28
These ports will transition transparantly to openmp from base once FreeBSD 12.0 reaches end-of-life. Reported by: jbeich [1] [2] [1] https://lists.freebsd.org/pipermail/svn-ports-head/2019-May/210482.html [2] https://lists.freebsd.org/pipermail/svn-ports-head/2019-December/229648.html
22 lines
523 B
Plaintext
22 lines
523 B
Plaintext
A set of iterative linear system solvers intended for use with the Blaze
|
|
library, a high-performance C++ linear algebra library. The API is currently
|
|
based on a tag-dispatch system to choose a particular algorithm.
|
|
|
|
Currently implemented algorithms:
|
|
* Conjugate Gradient (CG)
|
|
* BiCGSTAB
|
|
|
|
Planned algorithms:
|
|
* Preconditioned CG
|
|
* Preconditioned BiCGSTAB
|
|
* (Preconditioned) BiCGSTAB(l)
|
|
* GMRES
|
|
* Arnoldi
|
|
* Lanczos
|
|
|
|
Potential algorithms (if sufficient interest):
|
|
* LSQR
|
|
* LSMR
|
|
|
|
WWW: https://github.com/tjolsen/BlazeIterative
|