*** empty log message ***

This commit is contained in:
jiri 2009-11-13 15:09:35 +00:00
parent 4f7448f029
commit b2323bc7cd
1 changed files with 7 additions and 0 deletions

View File

@ -172,6 +172,13 @@ void cblas_zgerc(const enum CBLAS_ORDER Order, const int M, const int N,
LA::laerror("cblas_zgerc cannot be simply converted to fortran order");
}
void cblas_zgeru(const enum CBLAS_ORDER Order, const int M, const int N,
const void *alpha, const void *X, const int incX,
const void *Y, const int incY, void *A, const int lda)
{
LA::laerror("cblas_zgeru cannot be simply converted to fortran order");
}
extern "C" void FORNAME(dgemm) (const char *transa, const char *transb, const int *m, const int *n, const int *k, const double *alpha, const double *a, const int *lda, const double *b, const int *ldb, const double *beta, double *c, const int *ldc);
void cblas_dgemm(const enum CBLAS_ORDER Order, const enum CBLAS_TRANSPOSE TransA,
const enum CBLAS_TRANSPOSE TransB, const int M, const int N,