LAPACK
3.11.0
LAPACK: Linear Algebra PACKage
cblas_scopy.c
1
/*
2
* cblas_scopy.c
3
*
4
* The program is a C interface to scopy.
5
*
6
* Written by Keita Teranishi. 2/11/1998
7
*
8
*/
9
#include "cblas.h"
10
#include "cblas_f77.h"
11
void
cblas_scopy(
const
CBLAS_INT N,
const
float
*X,
12
const
CBLAS_INT incX,
float
*Y,
const
CBLAS_INT incY)
13
{
14
#ifdef F77_INT
15
F77_INT F77_N=N, F77_incX=incX, F77_incY=incY;
16
#else
17
#define F77_N N
18
#define F77_incX incX
19
#define F77_incY incY
20
#endif
21
F77_scopy( &F77_N, X, &F77_incX, Y, &F77_incY);
22
}
CBLAS
src
cblas_scopy.c
Generated on Wed Mar 1 2023 17:31:40 for LAPACK by
1.8.13