README 1.0 KB

1234567891011121314151617181920212223
  1. SuiteSparseQR is an implementation of the multifrontal sparse QR
  2. factorization method. Parallelism is exploited both in the BLAS and
  3. across different frontal matrices using Intel's Threading Building
  4. Blocks, a shared-memory programming model for modern multicore
  5. architectures. It can obtain a substantial fraction of the
  6. theoretical peak performance of a multicore computer.
  7. This package is part of SuiteSparse.
  8. This requires a BLAS/LAPACK implementation. Choose one of these package
  9. sets:
  10. * OpenBLAS (includes both a BLAS and a LAPACK implementation)
  11. * atlas (includes both a BLAS and a LAPACK implementation)
  12. * blas, lapack (the Netlib reference implementations)
  13. If more than one set is installed (assuming there are no packaging
  14. conflicts) then the auto-detection will use the first implementation
  15. from this list that it finds. If in doubt, choose the Netlib reference
  16. implementations; other packages that require a BLAS or LAPACK
  17. implementation may not build if they are not configured to detect/use
  18. alternate implementations.