libflame revision_anchor
Functions
bl1_maxabsv.c File Reference

(r)

Functions

void bl1_smaxabsv (int n, float *x, int incx, float *maxabs)
 
void bl1_dmaxabsv (int n, double *x, int incx, double *maxabs)
 
void bl1_cmaxabsv (int n, scomplex *x, int incx, float *maxabs)
 
void bl1_zmaxabsv (int n, dcomplex *x, int incx, double *maxabs)
 

Function Documentation

◆ bl1_cmaxabsv()

void bl1_cmaxabsv ( int  n,
scomplex x,
int  incx,
float maxabs 
)
56{
58 float maxabs_cand;
59 float maxabs_temp;
60 int i;
61
63
64 for ( i = 0; i < n; ++i )
65 {
66 chi = x + i*incx;
67
69
71 }
72
74}
int i
Definition bl1_axmyv2.c:145
Definition blis_type_defs.h:133

References i.

Referenced by bl1_cmaxabsm(), and bl1_cmaxabsmr().

◆ bl1_dmaxabsv()

void bl1_dmaxabsv ( int  n,
double x,
int  incx,
double maxabs 
)
35{
36 double* chi;
37 double maxabs_cand;
38 double maxabs_temp;
39 int i;
40
42
43 for ( i = 0; i < n; ++i )
44 {
45 chi = x + i*incx;
46
48
50 }
51
53}

References i.

Referenced by bl1_dmaxabsm(), and bl1_dmaxabsmr().

◆ bl1_smaxabsv()

void bl1_smaxabsv ( int  n,
float x,
int  incx,
float maxabs 
)
14{
15 float* chi;
16 float maxabs_cand;
17 float maxabs_temp;
18 int i;
19
21
22 for ( i = 0; i < n; ++i )
23 {
24 chi = x + i*incx;
25
27
29 }
30
32}

References i.

Referenced by bl1_smaxabsm(), and bl1_smaxabsmr().

◆ bl1_zmaxabsv()

void bl1_zmaxabsv ( int  n,
dcomplex x,
int  incx,
double maxabs 
)
77{
79 double maxabs_cand;
80 double maxabs_temp;
81 int i;
82
84
85 for ( i = 0; i < n; ++i )
86 {
87 chi = x + i*incx;
88
90
92 }
93
95}
Definition blis_type_defs.h:138

References i.

Referenced by bl1_zmaxabsm(), and bl1_zmaxabsmr().