Replies: 1 comment
-
The GESV implementation in OpenBLAS is imported unchanged from Reference-LAPACK, where it is basically a wrapper around GETRF/GETRS. As such, there is no "primary role" except to provide standard LAPACK functionality. Please see the call graph for GESV in the online documentation of the reference implementation of LAPACK on netlib.org. GETRF makes heavy use of GEMM and has been reimplemented and parallelized in OpenBLAS. I believe the only specific optimization possible would be to explore the multithreading strategy and the validity of the current problem size threshold for the switchover between single and multithreaded operation in GETRF/GETRS. |
Beta Was this translation helpful? Give feedback.
-
Hello @martin-frbg,
I’m working on optimizing the gesv function in OpenBLAS and have a few questions:
Beta Was this translation helpful? Give feedback.
All reactions