├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── config.h ├── config.md ├── coverage.md ├── examples ├── README.md ├── chegv.f └── linsys.c ├── inc └── relapack.h ├── make.inc ├── src ├── blas.h ├── cgbtrf.c ├── cgemmt.c ├── cgetrf.c ├── chegst.c ├── chetrf.c ├── chetrf_rec2.c ├── chetrf_rook.c ├── chetrf_rook_rec2.c ├── clauum.c ├── cpbtrf.c ├── cpotrf.c ├── csytrf.c ├── csytrf_rec2.c ├── csytrf_rook.c ├── csytrf_rook_rec2.c ├── ctgsyl.c ├── ctrsyl.c ├── ctrsyl_rec2.c ├── ctrtri.c ├── dgbtrf.c ├── dgemmt.c ├── dgetrf.c ├── dlauum.c ├── dpbtrf.c ├── dpotrf.c ├── dsygst.c ├── dsytrf.c ├── dsytrf_rec2.c ├── dsytrf_rook.c ├── dsytrf_rook_rec2.c ├── dtgsyl.c ├── dtrsyl.c ├── dtrsyl_rec2.c ├── dtrtri.c ├── f2c.c ├── f2c.h ├── lapack.h ├── lapack_wrappers.c ├── relapack.h ├── sgbtrf.c ├── sgemmt.c ├── sgetrf.c ├── slauum.c ├── spbtrf.c ├── spotrf.c ├── ssygst.c ├── ssytrf.c ├── ssytrf_rec2.c ├── ssytrf_rook.c ├── ssytrf_rook_rec2.c ├── stgsyl.c ├── strsyl.c ├── strsyl_rec2.c ├── strtri.c ├── zgbtrf.c ├── zgemmt.c ├── zgetrf.c ├── zhegst.c ├── zhetrf.c ├── zhetrf_rec2.c ├── zhetrf_rook.c ├── zhetrf_rook_rec2.c ├── zlauum.c ├── zpbtrf.c ├── zpotrf.c ├── zsytrf.c ├── zsytrf_rec2.c ├── zsytrf_rook.c ├── zsytrf_rook_rec2.c ├── ztgsyl.c ├── ztrsyl.c ├── ztrsyl_rec2.c └── ztrtri.c └── test ├── README.md ├── config.h ├── lapack.h ├── test.h ├── util.c ├── util.h ├── xgbtrf.c ├── xgemmt.c ├── xgetrf.c ├── xhegst.c ├── xhetrf.c ├── xlauum.c ├── xpbtrf.c ├── xpotrf.c ├── xsygst.c ├── xsytrf.c ├── xtgsyl.c ├── xtrsyl.c └── xtrtri.c /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/config.h -------------------------------------------------------------------------------- /config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/config.md -------------------------------------------------------------------------------- /coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/coverage.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/chegv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/examples/chegv.f -------------------------------------------------------------------------------- /examples/linsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/examples/linsys.c -------------------------------------------------------------------------------- /inc/relapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/inc/relapack.h -------------------------------------------------------------------------------- /make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/make.inc -------------------------------------------------------------------------------- /src/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/blas.h -------------------------------------------------------------------------------- /src/cgbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/cgbtrf.c -------------------------------------------------------------------------------- /src/cgemmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/cgemmt.c -------------------------------------------------------------------------------- /src/cgetrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/cgetrf.c -------------------------------------------------------------------------------- /src/chegst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/chegst.c -------------------------------------------------------------------------------- /src/chetrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/chetrf.c -------------------------------------------------------------------------------- /src/chetrf_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/chetrf_rec2.c -------------------------------------------------------------------------------- /src/chetrf_rook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/chetrf_rook.c -------------------------------------------------------------------------------- /src/chetrf_rook_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/chetrf_rook_rec2.c -------------------------------------------------------------------------------- /src/clauum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/clauum.c -------------------------------------------------------------------------------- /src/cpbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/cpbtrf.c -------------------------------------------------------------------------------- /src/cpotrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/cpotrf.c -------------------------------------------------------------------------------- /src/csytrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/csytrf.c -------------------------------------------------------------------------------- /src/csytrf_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/csytrf_rec2.c -------------------------------------------------------------------------------- /src/csytrf_rook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/csytrf_rook.c -------------------------------------------------------------------------------- /src/csytrf_rook_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/csytrf_rook_rec2.c -------------------------------------------------------------------------------- /src/ctgsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ctgsyl.c -------------------------------------------------------------------------------- /src/ctrsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ctrsyl.c -------------------------------------------------------------------------------- /src/ctrsyl_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ctrsyl_rec2.c -------------------------------------------------------------------------------- /src/ctrtri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ctrtri.c -------------------------------------------------------------------------------- /src/dgbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dgbtrf.c -------------------------------------------------------------------------------- /src/dgemmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dgemmt.c -------------------------------------------------------------------------------- /src/dgetrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dgetrf.c -------------------------------------------------------------------------------- /src/dlauum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dlauum.c -------------------------------------------------------------------------------- /src/dpbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dpbtrf.c -------------------------------------------------------------------------------- /src/dpotrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dpotrf.c -------------------------------------------------------------------------------- /src/dsygst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dsygst.c -------------------------------------------------------------------------------- /src/dsytrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dsytrf.c -------------------------------------------------------------------------------- /src/dsytrf_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dsytrf_rec2.c -------------------------------------------------------------------------------- /src/dsytrf_rook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dsytrf_rook.c -------------------------------------------------------------------------------- /src/dsytrf_rook_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dsytrf_rook_rec2.c -------------------------------------------------------------------------------- /src/dtgsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dtgsyl.c -------------------------------------------------------------------------------- /src/dtrsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dtrsyl.c -------------------------------------------------------------------------------- /src/dtrsyl_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dtrsyl_rec2.c -------------------------------------------------------------------------------- /src/dtrtri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/dtrtri.c -------------------------------------------------------------------------------- /src/f2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/f2c.c -------------------------------------------------------------------------------- /src/f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/f2c.h -------------------------------------------------------------------------------- /src/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/lapack.h -------------------------------------------------------------------------------- /src/lapack_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/lapack_wrappers.c -------------------------------------------------------------------------------- /src/relapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/relapack.h -------------------------------------------------------------------------------- /src/sgbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/sgbtrf.c -------------------------------------------------------------------------------- /src/sgemmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/sgemmt.c -------------------------------------------------------------------------------- /src/sgetrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/sgetrf.c -------------------------------------------------------------------------------- /src/slauum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/slauum.c -------------------------------------------------------------------------------- /src/spbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/spbtrf.c -------------------------------------------------------------------------------- /src/spotrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/spotrf.c -------------------------------------------------------------------------------- /src/ssygst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ssygst.c -------------------------------------------------------------------------------- /src/ssytrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ssytrf.c -------------------------------------------------------------------------------- /src/ssytrf_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ssytrf_rec2.c -------------------------------------------------------------------------------- /src/ssytrf_rook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ssytrf_rook.c -------------------------------------------------------------------------------- /src/ssytrf_rook_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ssytrf_rook_rec2.c -------------------------------------------------------------------------------- /src/stgsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/stgsyl.c -------------------------------------------------------------------------------- /src/strsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/strsyl.c -------------------------------------------------------------------------------- /src/strsyl_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/strsyl_rec2.c -------------------------------------------------------------------------------- /src/strtri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/strtri.c -------------------------------------------------------------------------------- /src/zgbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zgbtrf.c -------------------------------------------------------------------------------- /src/zgemmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zgemmt.c -------------------------------------------------------------------------------- /src/zgetrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zgetrf.c -------------------------------------------------------------------------------- /src/zhegst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zhegst.c -------------------------------------------------------------------------------- /src/zhetrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zhetrf.c -------------------------------------------------------------------------------- /src/zhetrf_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zhetrf_rec2.c -------------------------------------------------------------------------------- /src/zhetrf_rook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zhetrf_rook.c -------------------------------------------------------------------------------- /src/zhetrf_rook_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zhetrf_rook_rec2.c -------------------------------------------------------------------------------- /src/zlauum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zlauum.c -------------------------------------------------------------------------------- /src/zpbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zpbtrf.c -------------------------------------------------------------------------------- /src/zpotrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zpotrf.c -------------------------------------------------------------------------------- /src/zsytrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zsytrf.c -------------------------------------------------------------------------------- /src/zsytrf_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zsytrf_rec2.c -------------------------------------------------------------------------------- /src/zsytrf_rook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zsytrf_rook.c -------------------------------------------------------------------------------- /src/zsytrf_rook_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/zsytrf_rook_rec2.c -------------------------------------------------------------------------------- /src/ztgsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ztgsyl.c -------------------------------------------------------------------------------- /src/ztrsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ztrsyl.c -------------------------------------------------------------------------------- /src/ztrsyl_rec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ztrsyl_rec2.c -------------------------------------------------------------------------------- /src/ztrtri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/src/ztrtri.c -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/README.md -------------------------------------------------------------------------------- /test/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/config.h -------------------------------------------------------------------------------- /test/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/lapack.h -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/test.h -------------------------------------------------------------------------------- /test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/util.c -------------------------------------------------------------------------------- /test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/util.h -------------------------------------------------------------------------------- /test/xgbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xgbtrf.c -------------------------------------------------------------------------------- /test/xgemmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xgemmt.c -------------------------------------------------------------------------------- /test/xgetrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xgetrf.c -------------------------------------------------------------------------------- /test/xhegst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xhegst.c -------------------------------------------------------------------------------- /test/xhetrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xhetrf.c -------------------------------------------------------------------------------- /test/xlauum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xlauum.c -------------------------------------------------------------------------------- /test/xpbtrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xpbtrf.c -------------------------------------------------------------------------------- /test/xpotrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xpotrf.c -------------------------------------------------------------------------------- /test/xsygst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xsygst.c -------------------------------------------------------------------------------- /test/xsytrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xsytrf.c -------------------------------------------------------------------------------- /test/xtgsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xtgsyl.c -------------------------------------------------------------------------------- /test/xtrsyl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xtrsyl.c -------------------------------------------------------------------------------- /test/xtrtri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HPAC/ReLAPACK/HEAD/test/xtrtri.c --------------------------------------------------------------------------------