lapack icon indicating copy to clipboard operation
lapack copied to clipboard

LAPACK development repository

Results 229 lapack issues
Sort by recently updated
recently updated
newest added

**Description** The workspace query & docs for `tgsen` appear to be off by 1. It claims to need `2*M*(N-M)`, but then calls `tgsyl` with `LWORK-2*N1*N2` where N1 = M, N2...

Hello, colleagues! Please, help to find answer on the following question. I would like to test GTSV via using GET04 to check comparison of exact and computed solution. Reciprocal of...

Type: Question

Hello! Please take a look into presented checklist. **Checklist** - [x] Redundant space is added after the function name in XERBLA call. Related to (S|H)BGV source files only. I'd be...

Type: Bug

Hello! We are trying to reproduce some analysis using different OS (Alma 8 and Ubuntu22.04) and find some differences in the results. We believe that the differences are due to...

**Description** Going by the discussion [here](https://www.reddit.com/r/lisp/comments/y24hel/lapacke_slacpy_works_correctly_in_c_but_lapack/) (which I'm summarizing below), it seems that lapacke_slacpy and friends are (i) copying more than twice as much when asked to copy only the...

Type: Bug

I believe I found a bug in `LAPACK` in `svd(.)` / `DLASCL` function. It may be related to [issue #672](https://github.com/Reference-LAPACK/lapack/issues/672). ### Problem description R routine `svd(.)` from `LAPACK` crashes in...

Type: Bug

**Description** Tested on `master`, compiling LAPACK with ``` cp make.inc.example make.inc make FC="gfortran-11.3.0" make FFLAGS="-O2 -frecursive -march=haswell -ftree-vectorize" -j 32 ``` brings about many test failures: ``` --> LAPACK TESTING...

Type: Bug

Thanks @angsch! > The fix likely applies to`LAPACKE_?tprfb_work`, too. The dimensions of `A` depend on `side`. When `side = 'Left'`, `A` has minimum dimensions `(K, N)`. When `side = 'Right'`,...

Type: Bug

Hello all, While debugging sgeev or ssyev functions of Lapack using gdb , it's not going to all the functions shown in the call graph. It's going into only some...

Type: Question

I now need to perform a C row-major-order operation on a vector y with a step incy of 2. According to the formula in the documentation I should get a...

Type: Question