-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathblas_quda.h
More file actions
683 lines (560 loc) · 28.5 KB
/
blas_quda.h
File metadata and controls
683 lines (560 loc) · 28.5 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
#ifndef _QUDA_BLAS_H
#define _QUDA_BLAS_H
#include <quda_internal.h>
#include <color_spinor_field.h>
// ---------- blas_quda.cu ----------
namespace quda {
namespace reducer
{
/**
@brief Free any persistent allocations associated with global reduction
*/
void destroy();
} // namespace reducer
namespace blas
{
void setParam(int kernel, int prec, int threads, int blocks);
extern unsigned long long flops;
extern unsigned long long bytes;
void zero(ColorSpinorField &a);
inline void copy(ColorSpinorField &dst, const ColorSpinorField &src)
{
if (&dst == &src) return;
dst.copy(src);
}
void ax(double a, ColorSpinorField &x);
void axpbyz(double a, ColorSpinorField &x, double b, ColorSpinorField &y, ColorSpinorField &z);
inline void xpy(ColorSpinorField &x, ColorSpinorField &y) { axpbyz(1.0, x, 1.0, y, y); }
inline void mxpy(ColorSpinorField &x, ColorSpinorField &y) { axpbyz(-1.0, x, 1.0, y, y); }
inline void axpy(double a, ColorSpinorField &x, ColorSpinorField &y) { axpbyz(a, x, 1.0, y, y); }
inline void axpby(double a, ColorSpinorField &x, double b, ColorSpinorField &y) { axpbyz(a, x, b, y, y); }
inline void xpay(ColorSpinorField &x, double a, ColorSpinorField &y) { axpbyz(1.0, x, a, y, y); }
inline void xpayz(ColorSpinorField &x, double a, ColorSpinorField &y, ColorSpinorField &z) { axpbyz(1.0, x, a, y, z); }
void axpyZpbx(double a, ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &z, double b);
void axpyBzpcx(double a, ColorSpinorField& x, ColorSpinorField& y, double b, ColorSpinorField& z, double c);
void axpbypczw(double a, ColorSpinorField &x, double b, ColorSpinorField &y, double c, ColorSpinorField &z,
ColorSpinorField &w);
void caxpby(const Complex &a, ColorSpinorField &x, const Complex &b, ColorSpinorField &y);
void caxpy(const Complex &a, ColorSpinorField &x, ColorSpinorField &y);
void cxpaypbz(ColorSpinorField &, const Complex &b, ColorSpinorField &y, const Complex &c, ColorSpinorField &z);
void caxpbypzYmbw(const Complex &, ColorSpinorField &, const Complex &, ColorSpinorField &, ColorSpinorField &, ColorSpinorField &);
void caxpyBzpx(const Complex &, ColorSpinorField &, ColorSpinorField &, const Complex &, ColorSpinorField &);
void caxpyBxpz(const Complex &, ColorSpinorField &, ColorSpinorField &, const Complex &, ColorSpinorField &);
void cabxpyAx(double a, const Complex &b, ColorSpinorField &x, ColorSpinorField &y);
void caxpyXmaz(const Complex &a, ColorSpinorField &x,
ColorSpinorField &y, ColorSpinorField &z);
void caxpyXmazMR(const double &a, ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &z);
void tripleCGUpdate(double alpha, double beta, ColorSpinorField &q,
ColorSpinorField &r, ColorSpinorField &x, ColorSpinorField &p);
// reduction kernels - defined in reduce_quda.cu
double norm1(const ColorSpinorField &b);
double norm2(const ColorSpinorField &a);
double axpyReDot(double a, ColorSpinorField &x, ColorSpinorField &y);
double reDotProduct(ColorSpinorField &x, ColorSpinorField &y);
double axpbyzNorm(double a, ColorSpinorField &x, double b, ColorSpinorField &y, ColorSpinorField &z);
inline double axpyNorm(double a, ColorSpinorField &x, ColorSpinorField &y) { return axpbyzNorm(a, x, 1.0, y, y); }
inline double xmyNorm(ColorSpinorField &x, ColorSpinorField &y) { return axpbyzNorm(1.0, x, -1.0, y, y); }
Complex cDotProduct(ColorSpinorField &, ColorSpinorField &);
/**
@brief Return (a,b), ||a||^2 and ||b||^2
*/
double4 cDotProductNormAB(ColorSpinorField &a, ColorSpinorField &b);
/**
@brief Return (a,b) and ||a||^2 - implemented using cDotProductNormAB
*/
inline double3 cDotProductNormA(ColorSpinorField &a, ColorSpinorField &b)
{
auto a4 = cDotProductNormAB(a, b);
return make_double3(a4.x, a4.y, a4.z);
}
/**
@brief Return (a,b) and ||b||^2 - implemented using cDotProductNormAB
*/
inline double3 cDotProductNormB(ColorSpinorField &a, ColorSpinorField &b)
{
auto a4 = cDotProductNormAB(a, b);
return make_double3(a4.x, a4.y, a4.w);
}
double3 caxpbypzYmbwcDotProductUYNormY(const Complex &a, ColorSpinorField &x, const Complex &b, ColorSpinorField &y,
ColorSpinorField &z, ColorSpinorField &w, ColorSpinorField &u);
double caxpyNorm(const Complex &a, ColorSpinorField &x, ColorSpinorField &y);
double caxpyXmazNormX(const Complex &a, ColorSpinorField &x,
ColorSpinorField &y, ColorSpinorField &z);
double cabxpyzAxNorm(double a, const Complex &b, ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &z);
Complex caxpyDotzy(const Complex &a, ColorSpinorField &x, ColorSpinorField &y,
ColorSpinorField &z);
Complex axpyCGNorm(double a, ColorSpinorField &x, ColorSpinorField &y);
double3 HeavyQuarkResidualNorm(ColorSpinorField &x, ColorSpinorField &r);
double3 xpyHeavyQuarkResidualNorm(ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &r);
double3 tripleCGReduction(ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &z);
double4 quadrupleCGReduction(ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &z);
double quadrupleCG3InitNorm(double a, ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &z, ColorSpinorField &w, ColorSpinorField &v);
double quadrupleCG3UpdateNorm(double a, double b, ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &z, ColorSpinorField &w, ColorSpinorField &v);
// multi-blas kernels - defined in multi_blas.cu
/**
@brief Compute the block "axpy" with over the set of
ColorSpinorFields. E.g., it computes y = x * a + y
The dimensions of a can be rectangular, e.g., the width of x and y need not be same.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
void axpy(const std::vector<double> &a, std::vector<ColorSpinorField_ref> &&x, std::vector<ColorSpinorField_ref> &&y);
/**
@brief Overloaded version of block axpy that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
template <typename T1, typename T2> void axpy(const std::vector<double> &a, T1 &&x, T2 &&y)
{
axpy(a, make_set(x), make_set(y));
}
/**
@brief Compute the block "axpy_U" with over the set of
ColorSpinorFields. E.g., it computes
y = x * a + y
Where 'a' must be a square, upper triangular matrix.
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
void axpy_U(const std::vector<double> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y);
/**
@brief Wrapper function for block axpy_U that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
template <typename T1, typename T2> void axpy_U(const std::vector<double> &a, T1 &&x, T2 &&y)
{
axpy_U(a, make_set(x), make_set(y));
}
/**
@brief Compute the block "axpy_L" with over the set of
ColorSpinorFields. E.g., it computes
y = x * a + y
Where 'a' must be a square, lower triangular matrix.
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
void axpy_L(const std::vector<double> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y);
/**
@brief Wrapper function for block axpy_L that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
template <typename T1, typename T2> void axpy_L(const std::vector<double> &a, T1 &&x, T2 &&y)
{
axpy_L(a, make_set(x), make_set(y));
}
/**
@brief Compute the block "caxpy" with over the set of
ColorSpinorFields. E.g., it computes
y = x * a + y
The dimensions of a can be rectangular, e.g., the width of x
and y need not be same.
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
void caxpy(const std::vector<Complex> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y);
/**
@brief Wrapper function for block caxpy that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
template <typename T1, typename T2> void caxpy(const std::vector<Complex> &a, T1 &&x, T2 &&y)
{
caxpy(a, make_set(x), make_set(y));
}
/**
@brief Compute the block "caxpy_U" with over the set of
ColorSpinorFields. E.g., it computes
y = x * a + y
Where 'a' must be a square, upper triangular matrix.
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
void caxpy_U(const std::vector<Complex> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y);
/**
@brief Wrapper function for block caxpy_U that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
template <typename T1, typename T2> void caxpy_U(const std::vector<Complex> &a, T1 &&x, T2 &&y)
{
caxpy_U(a, make_set(x), make_set(y));
}
/**
@brief Compute the block "caxpy_L" with over the set of
ColorSpinorFields. E.g., it computes
y = x * a + y
Where 'a' must be a square, lower triangular matrix.
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
void caxpy_L(const std::vector<Complex> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y);
/**
@brief Wrapper function for block caxpy_L that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in,out] vector of input/output ColorSpinorFields
*/
template <typename T1, typename T2> void caxpy_L(const std::vector<Complex> &a, T1 &&x, T2 &&y)
{
caxpy_L(a, make_set(x), make_set(y));
}
/**
@brief Compute the block "axpyz" with over the set of
ColorSpinorFields. E.g., it computes
z = x * a + y
The dimensions of a can be rectangular, e.g., the width of x
and y need not be same, though the maximum width for both is
16.
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
void axpyz(const std::vector<double> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y, std::vector<ColorSpinorField_ref> &&z);
/**
@brief Wrapper function for block axpyz that allows us to call
with any or all arguments being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
template <typename T1, typename T2, typename T3> void axpyz(const std::vector<double> &a, T1 &&x, T2 &&y, T3 &&z)
{
axpyz(a, make_set(x), make_set(y), make_set(z));
}
/**
@brief Compute the block "axpyz" with over the set of
ColorSpinorFields. E.g., it computes
z = x * a + y
Where 'a' is assumed to be upper triangular.
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
void axpyz_U(const std::vector<double> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y, std::vector<ColorSpinorField_ref> &&z);
/**
@brief Wrapper function for block axpyz_U that allows us to call
with any or all arguments being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
template <typename T1, typename T2, typename T3> void axpyz_U(const std::vector<double> &a, T1 &&x, T2 &&y, T3 &&z)
{
axpyz_U(a, make_set(x), make_set(y), make_set(z));
}
/**
@brief Compute the block "axpyz" with over the set of
ColorSpinorFields. E.g., it computes
z = x * a + y
Where 'a' is assumed to be lower triangular
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
void axpyz_L(const std::vector<double> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y, std::vector<ColorSpinorField_ref> &&z);
/**
@brief Wrapper function for block axpyz_L that allows us to call
with any or all arguments being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
template <typename T1, typename T2, typename T3> void axpyz_L(const std::vector<double> &a, T1 &&x, T2 &&y, T3 &&z)
{
axpyz_L(a, make_set(x), make_set(y), make_set(z));
}
/**
@brief Compute the block "caxpyz" with over the set of
ColorSpinorFields. E.g., it computes
z = x * a + y
The dimensions of a can be rectangular, e.g., the width of x
and y need not be same, though the maximum width for both is
16.
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
void caxpyz(const std::vector<Complex> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y, std::vector<ColorSpinorField_ref> &&z);
/**
@brief Wrapper function for block caxpyz that allows us to call
with any or all arguments being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
template <typename T1, typename T2, typename T3> void caxpyz(const std::vector<Complex> &a, T1 &&x, T2 &&y, T3 &&z)
{
caxpyz(a, make_set(x), make_set(y), make_set(z));
}
/**
@brief Compute the block "caxpyz" with over the set of
ColorSpinorFields. E.g., it computes
z = x * a + y
Where 'a' is assumed to be upper triangular.
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
void caxpyz_U(const std::vector<Complex> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y, std::vector<ColorSpinorField_ref> &&z);
/**
@brief Wrapper function for block caxpyz_U that allows us to call
with any or all arguments being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
template <typename T1, typename T2, typename T3>
void caxpyz_U(const std::vector<Complex> &a, T1 &&x, T2 &&y, T3 &&z)
{
caxpyz_U(a, make_set(x), make_set(y), make_set(z));
}
/**
@brief Compute the block "caxpyz" with over the set of
ColorSpinorFields. E.g., it computes
z = x * a + y
Where 'a' is assumed to be lower triangular
@param a[in] Matrix of coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
void caxpyz_L(const std::vector<Complex> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y, std::vector<ColorSpinorField_ref> &&z);
/**
@brief Wrapper function for block caxpyz_L that allows us to call
with any or all arguments, being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
template <typename T1, typename T2, typename T3>
void caxpyz_L(const std::vector<Complex> &a, T1 &&x, T2 &&y, T3 &&z)
{
caxpyz_L(a, make_set(x), make_set(y), make_set(z));
}
/**
@brief Compute the vectorized "axpyBzpcx" with over the set of
ColorSpinorFields, where the third vector, z, is constant over the
batch. E.g., it computes
y = a * x + y
x = b * z + c * x
The dimensions of a, b, c are the same as the size of x and y,
with a maximum size of 16.
@param a[in] Array of coefficients
@param x[in,out] vector of ColorSpinorFields
@param y[in,out] vector of ColorSpinorFields
@param b[in] Array of coefficients
@param z[in] input ColorSpinorField
@param c[in] Array of coefficients
*/
void axpyBzpcx(const std::vector<double> &a, std::vector<ColorSpinorField_ref> &&x,
std::vector<ColorSpinorField_ref> &&y, const std::vector<double> &b, ColorSpinorField &z,
const std::vector<double> &c);
/**
@brief Wrapper function for axpyBzpcx that allows us to call
with either x or y, or both arguments, being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
template <typename T1, typename T2>
void axpyBzpcx(const std::vector<double> &a, T1 &&x, T2 &&y, const std::vector<double> &b, ColorSpinorField &z,
const std::vector<double> &c)
{
axpyBzpcx(a, make_set(x), make_set(y), b, z, c);
}
/**
@brief Compute the vectorized "caxpyBxpz" over the set of
ColorSpinorFields, where the second and third vector, y and z, is constant over the
batch. E.g., it computes
y = a * x + y
z = b * x + z
The dimensions of a, b are the same as the size of x,
with a maximum size of 16.
@param a[in] Array of coefficients
@param b[in] Array of coefficients
@param x[in] vector of ColorSpinorFields
@param y[in,out] input ColorSpinorField
@param z[in,out] input ColorSpinorField
*/
void caxpyBxpz(const std::vector<Complex> &a, std::vector<ColorSpinorField_ref> &&x, ColorSpinorField &y,
const std::vector<Complex> &b, ColorSpinorField &z);
/**
@brief Wrapper function for axpyBxpz that allows us to call
with the x argument being std::vector<ColorSpinorField>.
@param a[in] Matrix of real coefficients
@param x[in] vector of input ColorSpinorFields
@param y[in] vector of input ColorSpinorFields
@param z[out] vector of output ColorSpinorFields
*/
template <typename T>
void caxpyBxpz(const std::vector<Complex> &a, T &&x, ColorSpinorField &y, const std::vector<Complex> &b,
ColorSpinorField &z)
{
caxpyBxpz(a, make_set(x), y, b, z);
}
// multi-reduce kernels - defined in multi_reduce.cu
/**
@brief Computes the matrix of real inner products between the vector set a and the vector set b
@param result[out] Matrix of inner product result[i][j] = (a[j],b[i])
@param a[in] set of input ColorSpinorFields
@param b[in] set of input ColorSpinorFields
*/
void reDotProduct(std::vector<double> &result, std::vector<ColorSpinorField_ref> &&a,
std::vector<ColorSpinorField_ref> &&b);
/**
@brief Wrapper function for reDotProduct that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param result[out] Matrix of inner product result[i][j] = (a[j],b[i])
@param a[in] set of input ColorSpinorFields
@param b[in] set of input ColorSpinorFields
*/
template <typename T1, typename T2> void reDotProduct(std::vector<double> &result, T1 &&a, T2 &&b)
{
reDotProduct(result, make_set(a), make_set(b));
}
/**
@brief Computes the matrix of inner products between the vector set a and the vector set b
@param result[out] Matrix of inner product result[i][j] = (a[j],b[i])
@param a[in] set of input ColorSpinorFields
@param b[in] set of input ColorSpinorFields
*/
void cDotProduct(std::vector<Complex> &result, std::vector<ColorSpinorField_ref> &&a,
std::vector<ColorSpinorField_ref> &&b);
/**
@brief Wrapper function for cDotProduct that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param result[out] Matrix of inner product result[i][j] = (a[j],b[i])
@param a[in] set of input ColorSpinorFields
@param b[in] set of input ColorSpinorFields
*/
template <typename T1, typename T2> void cDotProduct(std::vector<Complex> &result, T1 &&a, T2 &&b)
{
cDotProduct(result, make_set(a), make_set(b));
}
/**
@brief Computes the matrix of inner products between the vector
set a and the vector set b. This routine is specifically for
the case where the result matrix is guaranteed to be Hermitian.
Requires a.size()==b.size().
@param result[out] Matrix of inner product result[i][j] = (a[j],b[i])
@param a[in] set of input ColorSpinorFields
@param b[in] set of input ColorSpinorFields
*/
void hDotProduct(std::vector<Complex> &result, std::vector<ColorSpinorField_ref> &&a,
std::vector<ColorSpinorField_ref> &&b);
/**
@brief Wrapper function for hDotProduct that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param result[out] Matrix of inner product result[i][j] = (a[j],b[i])
@param a[in] set of input ColorSpinorFields
@param b[in] set of input ColorSpinorFields
*/
template <typename T1, typename T2> void hDotProduct(std::vector<Complex> &result, T1 &&a, T2 &&b)
{
hDotProduct(result, make_set(a), make_set(b));
}
/**
@brief Computes the matrix of inner products between the vector
set a and the vector set b. This routine is specifically for
the case where the result matrix is guaranteed to be Hermitian.
Uniquely defined for cases like (p, Ap) where the output is Hermitian,
but there's an A-norm instead of an L2 norm.
Requires a.size()==b.size().
@param result[out] Matrix of inner product result[i][j] = (a[j],b[i])
@param a[in] set of input ColorSpinorFields
@param b[in] set of input ColorSpinorFields
*/
void hDotProduct_Anorm(std::vector<Complex> &result, std::vector<ColorSpinorField_ref> &&a,
std::vector<ColorSpinorField_ref> &&b);
/**
@brief Wrapper function for hDotProduct_Anorm that allows us to call
with either, or both arguments, being std::vector<ColorSpinorField>.
@param result[out] Matrix of inner product result[i][j] = (a[j],b[i])
@param a[in] set of input ColorSpinorFields
@param b[in] set of input ColorSpinorFields
*/
template <typename T1, typename T2> void hDotProduct_Anorm(std::vector<Complex> &result, T1 &&a, T2 &&b)
{
hDotProduct_Anorm(result, make_set(a), make_set(b));
}
// compatibility wrappers until we switch to
// std::vector<ColorSpinorField> and
// std::vector<std::reference_wrapper<...>> more broadly
void axpy(const double *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y);
void axpy(const double *a, ColorSpinorField &x, ColorSpinorField &y);
void axpy_U(const double *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y);
void axpy_U(const double *a, ColorSpinorField &x, ColorSpinorField &y);
void axpy_L(const double *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y);
void axpy_L(const double *a, ColorSpinorField &x, ColorSpinorField &y);
void caxpy(const Complex *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y);
void caxpy(const Complex *a, ColorSpinorField &x, ColorSpinorField &y);
void caxpy_U(const Complex *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y);
void caxpy_U(const Complex *a, ColorSpinorField &x, ColorSpinorField &y);
void caxpy_L(const Complex *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y);
void caxpy_L(const Complex *a, ColorSpinorField &x, ColorSpinorField &y);
void axpyz(const double *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y,
std::vector<ColorSpinorField *> &z);
void axpyz(const double *a, ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &z);
void axpyz_U(const double *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y,
std::vector<ColorSpinorField *> &z);
void axpyz_L(const double *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y,
std::vector<ColorSpinorField *> &z);
void caxpyz(const Complex *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y,
std::vector<ColorSpinorField *> &z);
void caxpyz(const Complex *a, ColorSpinorField &x, ColorSpinorField &y, ColorSpinorField &z);
void caxpyz_U(const Complex *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y,
std::vector<ColorSpinorField *> &z);
void caxpyz_L(const Complex *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y,
std::vector<ColorSpinorField *> &z);
void axpyBzpcx(const double *a, std::vector<ColorSpinorField *> &x, std::vector<ColorSpinorField *> &y,
const double *b, ColorSpinorField &z, const double *c);
void caxpyBxpz(const Complex *a_, std::vector<ColorSpinorField *> &x_, ColorSpinorField &y_, const Complex *b_,
ColorSpinorField &z_);
void reDotProduct(double *result, std::vector<ColorSpinorField *> &a, std::vector<ColorSpinorField *> &b);
void cDotProduct(Complex *result, std::vector<ColorSpinorField *> &a, std::vector<ColorSpinorField *> &b);
void hDotProduct(Complex *result, std::vector<ColorSpinorField *> &a, std::vector<ColorSpinorField *> &b);
} // namespace blas
} // namespace quda
#endif // _QUDA_BLAS_H