-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathc_cblas1.c
75 lines (65 loc) · 1.67 KB
/
c_cblas1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* c_cblas1.c
*
* The program is a C wrapper for ccblat1.
*
* Written by Keita Teranishi. 2/11/1998
*
*/
#include "common.h"
#include "cblas_test.h"
void F77_caxpy(const int *N, OPENBLAS_CONST void *alpha, void *X,
const int *incX, void *Y, const int *incY)
{
cblas_caxpy(*N, alpha, X, *incX, Y, *incY);
return;
}
void F77_ccopy(const int *N, void *X, const int *incX,
void *Y, const int *incY)
{
cblas_ccopy(*N, X, *incX, Y, *incY);
return;
}
void F77_cdotc(const int *N, void *X, const int *incX,
void *Y, const int *incY, void *dotc)
{
cblas_cdotc_sub(*N, X, *incX, Y, *incY, dotc);
return;
}
void F77_cdotu(const int *N, void *X, const int *incX,
void *Y, const int *incY,void *dotu)
{
cblas_cdotu_sub(*N, X, *incX, Y, *incY, dotu);
return;
}
void F77_cscal(const int *N, const void * *alpha, void *X,
const int *incX)
{
cblas_cscal(*N, alpha, X, *incX);
return;
}
void F77_csscal(const int *N, const float *alpha, void *X,
const int *incX)
{
cblas_csscal(*N, *alpha, X, *incX);
return;
}
void F77_cswap( const int *N, void *X, const int *incX,
void *Y, const int *incY)
{
cblas_cswap(*N,X,*incX,Y,*incY);
return;
}
int F77_icamax(const int *N, OPENBLAS_CONST void *X, const int *incX)
{
if (*N < 1 || *incX < 1) return(0);
return (cblas_icamax(*N, X, *incX)+1);
}
float F77_scnrm2(const int *N, OPENBLAS_CONST void *X, const int *incX)
{
return cblas_scnrm2(*N, X, *incX);
}
float F77_scasum(const int *N, void *X, const int *incX)
{
return cblas_scasum(*N, X, *incX);
}