cblas:: where are all the routines? do these routines exist?

so where are all of the blas, lapack libs?


i need cblas_zgetrf and clbas_zgetrs


the documentation here

developer.apple.com/library/mac/documentation/Accelerate/Reference/BLAS_Ref/index.html#//apple_ref/doc/uid/TP30000414-SW126

they should be here....???? but they are not


cblas_zgemv(_:_:_:_:_:_:_:_:_:_:_:_:)

cblas_zgerc(_:_:_:_:_:_:_:_:_:_:)

cblas_zgeru(_:_:_:_:_:_:_:_:_:_:)

cblas_zhbmv(_:_:_:_:_:_:_:_:_:_:_:_:)

cblas_zhemm(_:_:_:_:_:_:_:_:_:_:_:_:_:)

cblas_zhemv(_:_:_:_:_:_:_:_:_:_:_:)


but in the header clapack.h it has this but it's not in the documentation????


int zgetrf_(__CLPK_integer *__m, __CLPK_integer *__n, __CLPK_doublecomplex *__a,

__CLPK_integer *__lda, __CLPK_integer *__ipiv,

__CLPK_integer *__info) __OSX_AVAILABLE_STARTING(__MAC_10_2,

__IPHONE_4_0);


int zgetrs_(char *__trans, __CLPK_integer *__n, __CLPK_integer *__nrhs,

__CLPK_doublecomplex *__a, __CLPK_integer *__lda,

__CLPK_integer *__ipiv, __CLPK_doublecomplex *__b,

__CLPK_integer *__ldb,

__CLPK_integer *__info) __OSX_AVAILABLE_STARTING(__MAC_10_2,

__IPHONE_4_0);

and validation by trying to install plasma with the acclerate framework


LAPACK installation/verification

========================================

Checking if provided LAPACK works... yes

Checking if provided LAPACK contains functions for test works... no

========================================

libtmg installation/verification

========================================

The Lapack library you provided doesn't contain Matrix generation function

for PLASMA testings and timings.

The library is not needed in the case when testing is disabled

by means of the --notesting flag.

What do you want to do ?


========================================

Lapack installation/verification

========================================

LAPACK library is -framework Accelerate

Checking if provided LAPACK works... yes

Getting LAPACK version number... 3.2.1

Checking if provided LAPACK contains functions for test works... no

cblas:: where are all the routines? do these routines exist?
 
 
Q