Does ATLAS provide a standard C interface to LAPACK?
The short answer is no, and neither does anyone else. As far as I know, there has been no official standardization of a C interface to LAPACK. In the absence of a standard, each library is free to do things differently. For instance, netlib provides something called clapack, which is the result of running lapack through f2c on a particular platform. This means all paremeters must be passed by reference, names have an underscore appended, etc. ATLAS does not support this adhoc interface, though you can use ATLAS to provide the BLAS for netlib clapack, as mentioned here. I believe most of the vendors provide some C interface to LAPACK; I think most of them just use the same name (eg, F77’s DGESV becomes dgesv), and the scalars become pass-by-value. ATLAS provides a C interface to the LAPACK routines natively provided by ATLAS, which is based on the standardized C interface to the BLAS. These routines are prefixed with clapack_, and their prototypes can be found in ATLAS/include/clapack.h
Related Questions
- How does the Schroth Based Method interface with the current standard of care for idiopathic adolescent scoliosis in the United States?
- Will the new file specification interface directly to the Scottish Standard Payroll System (SSPS) e-payroll project?
- Does ATLAS provide a standard C interface to LAPACK?