removed lapack 3.6.0
This commit is contained in:
@@ -1,74 +0,0 @@
|
||||
/*
|
||||
* c_zblas1.c
|
||||
*
|
||||
* The program is a C wrapper for zcblat1.
|
||||
*
|
||||
* Written by Keita Teranishi. 2/11/1998
|
||||
*
|
||||
*/
|
||||
#include "cblas_test.h"
|
||||
#include "cblas.h"
|
||||
void F77_zaxpy(const int *N, const void *alpha, void *X,
|
||||
const int *incX, void *Y, const int *incY)
|
||||
{
|
||||
cblas_zaxpy(*N, alpha, X, *incX, Y, *incY);
|
||||
return;
|
||||
}
|
||||
|
||||
void F77_zcopy(const int *N, void *X, const int *incX,
|
||||
void *Y, const int *incY)
|
||||
{
|
||||
cblas_zcopy(*N, X, *incX, Y, *incY);
|
||||
return;
|
||||
}
|
||||
|
||||
void F77_zdotc(const int *N, const void *X, const int *incX,
|
||||
const void *Y, const int *incY,void *dotc)
|
||||
{
|
||||
cblas_zdotc_sub(*N, X, *incX, Y, *incY, dotc);
|
||||
return;
|
||||
}
|
||||
|
||||
void F77_zdotu(const int *N, void *X, const int *incX,
|
||||
void *Y, const int *incY,void *dotu)
|
||||
{
|
||||
cblas_zdotu_sub(*N, X, *incX, Y, *incY, dotu);
|
||||
return;
|
||||
}
|
||||
|
||||
void F77_zdscal(const int *N, const double *alpha, void *X,
|
||||
const int *incX)
|
||||
{
|
||||
cblas_zdscal(*N, *alpha, X, *incX);
|
||||
return;
|
||||
}
|
||||
|
||||
void F77_zscal(const int *N, const void * *alpha, void *X,
|
||||
const int *incX)
|
||||
{
|
||||
cblas_zscal(*N, alpha, X, *incX);
|
||||
return;
|
||||
}
|
||||
|
||||
void F77_zswap( const int *N, void *X, const int *incX,
|
||||
void *Y, const int *incY)
|
||||
{
|
||||
cblas_zswap(*N,X,*incX,Y,*incY);
|
||||
return;
|
||||
}
|
||||
|
||||
int F77_izamax(const int *N, const void *X, const int *incX)
|
||||
{
|
||||
if (*N < 1 || *incX < 1) return(0);
|
||||
return(cblas_izamax(*N, X, *incX)+1);
|
||||
}
|
||||
|
||||
double F77_dznrm2(const int *N, const void *X, const int *incX)
|
||||
{
|
||||
return cblas_dznrm2(*N, X, *incX);
|
||||
}
|
||||
|
||||
double F77_dzasum(const int *N, void *X, const int *incX)
|
||||
{
|
||||
return cblas_dzasum(*N, X, *incX);
|
||||
}
|
||||
Reference in New Issue
Block a user