Documents
- Intel Fortran Language Reference
- Intel C++ Compiler Documentation
- Intel MKL manual
Contains descriptions of the functions and interfaces for
BLAS, FFTs, LAPACK, cblas interface, Vector Math Library (VML), Vector Statistical Library (VSL), DFTs
- LAPACK
Linear Algebra PACKage. LAPACK is a library of Fortran 77 subroutines for solving
the most commonly occurring problems in numerical linear algebra. To call a routine
in the package from a C/C++ program, append an underscore (_) to the name of the routine.
In addition, since FORTRAN passes variables by reference,
all scalar and array arguments must be passed as pointers.
- BLAS
Basic Linear Algebra Subroutines
- SCALAPACK
SCAlable LAPACK; essentially a parallel version of LAPACK.
- BLACS
Basic Linear Algebra Communication Subprograms. This package works in conjunction with
SCALAPACK to asist in matrix decomposition ...
|
|
|