-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathher2.cc
180 lines (159 loc) · 5.34 KB
/
her2.cc
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// Copyright (c) 2017-2023, University of Tennessee. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause
// This program is free software: you can redistribute it and/or modify it under
// the terms of the BSD 3-Clause license. See the accompanying LICENSE file.
#include "blas/fortran.h"
#include "blas.hh"
#include "blas_internal.hh"
#include "blas/counter.hh"
#include <limits>
#include <string.h>
namespace blas {
//==============================================================================
namespace internal {
//------------------------------------------------------------------------------
/// Low-level overload wrapper calls Fortran, complex<float> version.
/// @ingroup her2_internal
inline void her2(
char uplo,
blas_int n,
std::complex<float> alpha,
std::complex<float> const* x, blas_int incx,
std::complex<float> const* y, blas_int incy,
std::complex<float>* A, blas_int lda )
{
BLAS_cher2( &uplo, &n,
(blas_complex_float*) &alpha,
(blas_complex_float*) x, &incx,
(blas_complex_float*) y, &incy,
(blas_complex_float*) A, &lda );
}
//------------------------------------------------------------------------------
/// Low-level overload wrapper calls Fortran, complex<double> version.
/// @ingroup her2_internal
inline void her2(
char uplo,
blas_int n,
std::complex<double> alpha,
std::complex<double> const* x, blas_int incx,
std::complex<double> const* y, blas_int incy,
std::complex<double>* A, blas_int lda )
{
BLAS_zher2( &uplo, &n,
(blas_complex_double*) &alpha,
(blas_complex_double*) x, &incx,
(blas_complex_double*) y, &incy,
(blas_complex_double*) A, &lda );
}
} // namespace internal
//==============================================================================
namespace impl {
//------------------------------------------------------------------------------
/// Mid-level templated wrapper checks and converts arguments,
/// then calls low-level wrapper.
/// @ingroup her2_internal
///
template <typename scalar_t>
void her2(
blas::Layout layout,
blas::Uplo uplo,
int64_t n,
scalar_t alpha,
scalar_t const* x, int64_t incx,
scalar_t const* y, int64_t incy,
scalar_t* A, int64_t lda )
{
// check arguments
blas_error_if( layout != Layout::ColMajor &&
layout != Layout::RowMajor );
blas_error_if( uplo != Uplo::Lower &&
uplo != Uplo::Upper );
blas_error_if( n < 0 );
blas_error_if( lda < n );
blas_error_if( incx == 0 );
blas_error_if( incy == 0 );
#ifdef BLAS_HAVE_PAPI
// PAPI instrumentation
counter::her2_type element;
memset( &element, 0, sizeof( element ) );
element = { uplo, n };
counter::insert( element, counter::Id::her2 );
double gflops = 1e9 * blas::Gflop< scalar_t >::her2( n );
counter::inc_flop_count( (long long int)gflops );
#endif
// convert arguments
blas_int n_ = to_blas_int( n );
blas_int lda_ = to_blas_int( lda );
blas_int incx_ = to_blas_int( incx );
blas_int incy_ = to_blas_int( incy );
if (layout == Layout::RowMajor) {
// swap lower <=> upper
uplo = (uplo == Uplo::Lower ? Uplo::Upper : Uplo::Lower);
}
char uplo_ = to_char( uplo );
// call low-level wrapper
internal::her2( uplo_, n_,
alpha, x, incx_, y, incy_, A, lda_ );
}
} // namespace impl
//==============================================================================
// High-level overloaded wrappers call mid-level templated wrapper.
//------------------------------------------------------------------------------
/// CPU, float version.
/// @ingroup her2
void her2(
blas::Layout layout,
blas::Uplo uplo,
int64_t n,
float alpha,
float const* x, int64_t incx,
float const* y, int64_t incy,
float* A, int64_t lda )
{
blas::syr2( layout, uplo, n, alpha, x, incx, y, incy, A, lda );
}
//------------------------------------------------------------------------------
/// CPU, double version.
/// @ingroup her2
void her2(
blas::Layout layout,
blas::Uplo uplo,
int64_t n,
double alpha,
double const* x, int64_t incx,
double const* y, int64_t incy,
double* A, int64_t lda )
{
blas::syr2( layout, uplo, n, alpha, x, incx, y, incy, A, lda );
}
//------------------------------------------------------------------------------
/// CPU, complex<float> version.
/// @ingroup her2
void her2(
blas::Layout layout,
blas::Uplo uplo,
int64_t n,
std::complex<float> alpha,
std::complex<float> const* x, int64_t incx,
std::complex<float> const* y, int64_t incy,
std::complex<float>* A, int64_t lda )
{
impl::her2( layout, uplo, n,
alpha, x, incx, y, incy, A, lda );
}
//------------------------------------------------------------------------------
/// CPU, complex<double> version.
/// @ingroup her2
void her2(
blas::Layout layout,
blas::Uplo uplo,
int64_t n,
std::complex<double> alpha,
std::complex<double> const* x, int64_t incx,
std::complex<double> const* y, int64_t incy,
std::complex<double>* A, int64_t lda )
{
impl::her2( layout, uplo, n,
alpha, x, incx, y, incy, A, lda );
}
} // namespace blas