lapack
lapack copied to clipboard
LAPACK development repository
Professor James Demmel from UC Berkeley has mentioned an issue with the current implementation of xGECON. xLATRS returns SCALE = 0 if a (triangular) matrix is singular (for instance, if...
In the current LAPACK master, building with `BLAS++` flag `ON` causes the following error in CMake: ``` [build] [ 47%] Building CXX object test/CMakeFiles/tester.dir/test.cc.o [build] In file included from /home/weslleyp/storage/lapack/build_RelWithDebInfo/blaspp-prefix/src/blaspp/test/test.cc:12:...
This PR propose the inclusion of tests covering: 1. Inf and NaN propagation. 2. Corner cases like: zero and negative sizes on inputs; invalid arguments. About the tests: - They...
**Description** The current description of DTRTRS claims that `A check is made to verify that A is nonsingular.`. Initially I assumed that nonsingular meant "nonsingular within acceptable numerical precision", but...
wget --no-check-certificate -O ~/build/lapack-3.11.tar.gz https://github.com/Reference-LAPACK/lapack/archive/refs/tags/v3.11.tar.gz tar xvf lapack-3.11.tar.gz install -v -d mybuild cd mybuild cmake -DCMAKE_INSTALL_PREFIX="$installdir" -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Debug -DBLAS++=ON -DCBLAS=ON -DLAPACK++=ON -DLAPACKE=ON -DBUILD_INDEX64=ON -DBUILD_DEPRECATED=ON .. make -- Using CMAKE_INSTALL_PREFIX...
I have installed lapack through the vcpkg installation method and was done successfully but I need help in terms of the steps needed to be able to use the packages...
DHGEQZ references DLAGBC for clarification in its calculation of the inverse reflector. Unfortunately, DLAGBC is no longer a part of LAPACK, nor is it present in the git history for...
**Description** This PR adds `?gemm_batch` routines and new `xerblai` error handler for batched routines. `?gemm_batch` routines can be extremely useful in case of large set of small matrixes in the...
Hey! Do you already use a static code analysis tool? Also known as SAST. [SAST](https://snyk.io/learn/application-security/static-application-security-testing/) is used to identify security vulnerabilities in your source code. Vulnerabilities such as [buffer overflow](https://www.synopsys.com/blogs/software-security/detect-prevent-and-mitigate-buffer-overflow-attacks.html)...
Hi everyone, I'm actually converting all the Lapack source file to F90, and profit to make as much optimizations as possible. Are you interested to integrate my work in the...