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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Automatically Tuned Linear Algebra Software v3.8.3
* (C) Copyright 1999 R. Clint Whaley
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions, and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the ATLAS group or the names of its contributers may
* not be used to endorse or promote products derived from this
* software without specific written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ATLAS GROUP OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
/*
* Prototypes ATLAS Level 1 functions not defined in atlas_aux.h
*/
#ifndef ATLAS_LEVEL1_H
#define ATLAS_LEVEL1_H
/*
* Many level one blas routines actually taken care of by atlas auxiliary
*/
#include "atlas_aux.h"
float ATL_sdsdot(const int N, const float alpha, const float *X,
const int incX, const float *Y, const int incY);
double ATL_dsdot(const int N, const float *X, const int incX,
const float *Y, const int incY);
/*
* Routines with all four types
*/
void ATL_sswap(const int N, float *X, const int incX,
float *Y, const int incY);
int ATL_isamax(const int N, const float *X, const int incX);
void ATL_dswap(const int N, double *X, const int incX,
double *Y, const int incY);
int ATL_idamax(const int N, const double *X, const int incX);
void ATL_cswap(const int N, float *X, const int incX,
float *Y, const int incY);
int ATL_icamax(const int N, const float *X, const int incX);
void ATL_zswap(const int N, double *X, const int incX,
double *Y, const int incY);
int ATL_izamax(const int N, const double *X, const int incX);
/*
* Routines with real types
*/
void ATL_srotg(float *a, float *b, float *c, float *s);
void ATL_srotmg(float *d1, float *d2, float *b1, const float b2, float *P);
void ATL_srot(const int N, float *X, const int incX,
float *Y, const int incY, const float c, const float s);
void ATL_srotm(const int N, float *X, const int incX,
float *Y, const int incY, const float *P);
float ATL_sdot(const int N, const float *X, const int incX,
const float *Y, const int incY);
void ATL_sssq(const int N, const float *X, const int incX,
float *scal0, float *ssq0);
float ATL_snrm2(const int N, const float *X, const int incX);
float ATL_sasum(const int N, const float *X, const int incX);
void ATL_drotg(double *a, double *b, double *c, double *s);
void ATL_drotmg(double *d1, double *d2, double *b1, const double b2, double *P);
void ATL_drot(const int N, double *X, const int incX,
double *Y, const int incY, const double c, const double s);
void ATL_drotm(const int N, double *X, const int incX,
double *Y, const int incY, const double *P);
double ATL_ddot(const int N, const double *X, const int incX,
const double *Y, const int incY);
void ATL_dssq(const int N, const double *X, const int incX,
double *scal0, double *ssq0);
double ATL_dnrm2(const int N, const double *X, const int incX);
double ATL_dasum(const int N, const double *X, const int incX);
/*
* Routines with complex types
*/
void ATL_csrot(const int N, float *X, const int incX,
float *Y, const int incY, const float c, const float s);
void ATL_crotg(float *a, const float *b, float *c, float *s);
void ATL_cdotu_sub(const int N, const float *X, const int incX,
const float *Y, const int incY, float *dot);
void ATL_cdotc_sub(const int N, const float *X, const int incX,
const float *Y, const int incY, float *dot);
void ATL_cssq(const int N, const float *X, const int incX,
float *scal0, float *ssq0);
float ATL_scnrm2(const int N, const float *X, const int incX);
float ATL_scasum(const int N, const float *X, const int incX);
void ATL_zdrot(const int N, double *X, const int incX,
double *Y, const int incY, const double c, const double s);
void ATL_zrotg(double *a, const double *b, double *c, double *s);
void ATL_zdotu_sub(const int N, const double *X, const int incX,
const double *Y, const int incY, double *dot);
void ATL_zdotc_sub(const int N, const double *X, const int incX,
const double *Y, const int incY, double *dot);
void ATL_zssq(const int N, const double *X, const int incX,
double *scal0, double *ssq0);
double ATL_dznrm2(const int N, const double *X, const int incX);
double ATL_dzasum(const int N, const double *X, const int incX);
#define ATL_casum ATL_scasum
#define ATL_zasum ATL_dzasum
#define ATL_cnrm2 ATL_scnrm2
#define ATL_znrm2 ATL_dznrm2
#endif
|