BLAS1 is a library of C++ routines which implement the Level 1 BLAS, or Basic Linear Algebra Subprograms.
The BLAS are a small core library of linear algebra utilities, which can be highly optimized for various architectures. Software that relies on the BLAS is thus highly portable, and will typically run very efficiently.
The Level 1 BLAS are primarily for use in vector operations. In certain cases, they may also be used to operate on the rows or columns of a two-dimensional array.
Copies of the BLAS1 library are made available in single or double precision using real or complex arithmetic. For more information, refer to the versions of the library defined by their arithmetic precision.
BLAS1 is also available in a C++ version and a FORTRAN90 version and a MATLAB version.
BLAS1_C is a FORTRAN77 library which contains a version of BLAS1 for single precision complex arithmetic.
BLAS1_D is a FORTRAN77 library which contains a version of BLAS1 for double precision real arithmetic.
BLAS1_S is a FORTRAN77 library which contains a version of BLAS1 for single precision real arithmetic.
BLAS1_Z is a FORTRAN77 library which contains a version of BLAS1 for double precision complex arithmetic.
BLAS2 is a FORTRAN77 library, the Level 2 BLAS, for matrix-vector operations.
BLAS3 is a FORTRAN77 library, the Level 3 BLAS, for matrix-matrix operations.
ESSL is the IBM Engineering and Scientific Subroutine Library which includes an implementation of the BLAS1 routines.
GSL is the Gnu Scientific Library which includes an implementation of the BLAS1 routines.
LAPACK is a FORTRAN77 library, a linear algebra package that uses BLAS1 routines
LINPACK is a FORTRAN77 library which is a linear algebra library that uses the BLAS1 routines
NMS is a FORTRAN90 library which includes BLAS1.
PETSC is a scientific library for use in parallel computation, which includes an implementation of the BLAS1 routines.
SLATEC is a FORTRAN90 library which includes BLAS1.
SUPER_BLAS is a C library which s a version of some of the BLAS1 routines.
You can go up one level to the FORTRAN77 source codes.