12#include <pscf/cuda/DeviceArray.h>
89void eqV(DeviceArray<cudaReal>& a, DeviceArray<cudaReal>
const & b,
90 const int beginIdA,
const int beginIdB,
const int n);
111 const int beginIdA,
const int beginIdB,
const int n);
132 const int beginIdA,
const int n);
152 const int beginIdA,
const int n);
180 const int beginIdB,
const int beginIdC,
const int n);
206 const int beginIdB,
const int beginIdC,
const int n);
233 const int beginIdB,
const int beginIdC,
const int n);
260 const int beginIdB,
const int beginIdC,
const int n);
285 cudaReal
const c,
const int beginIdA,
286 const int beginIdB,
const int n);
310 cudaComplex
const c,
const int beginIdA,
311 const int beginIdB,
const int n);
335 cudaComplex
const c,
const int beginIdA,
336 const int beginIdB,
const int n);
360 cudaReal
const c,
const int beginIdA,
361 const int beginIdB,
const int n);
391 const int beginIdB,
const int beginIdC,
const int n);
417 const int beginIdB,
const int beginIdC,
const int n);
444 const int beginIdB,
const int beginIdC,
const int n);
470 const int beginIdB,
const int beginIdC,
const int n);
495 cudaReal
const c,
const int beginIdA,
496 const int beginIdB,
const int n);
520 cudaComplex
const c,
const int beginIdA,
521 const int beginIdB,
const int n);
545 cudaComplex
const c,
const int beginIdA,
546 const int beginIdB,
const int n);
571 cudaReal
const c,
const int beginIdA,
572 const int beginIdB,
const int n);
602 const int beginIdB,
const int beginIdC,
const int n);
628 const int beginIdB,
const int beginIdC,
const int n);
655 const int beginIdB,
const int beginIdC,
const int n);
682 const int beginIdB,
const int beginIdC,
const int n);
707 cudaReal
const c,
const int beginIdA,
708 const int beginIdB,
const int n);
732 cudaComplex
const c,
const int beginIdA,
733 const int beginIdB,
const int n);
757 cudaComplex
const c,
const int beginIdA,
758 const int beginIdB,
const int n);
782 cudaReal
const c,
const int beginIdA,
783 const int beginIdB,
const int n);
813 const int beginIdB,
const int beginIdC,
const int n);
839 const int beginIdB,
const int beginIdC,
const int n);
864 cudaReal
const c,
const int beginIdA,
865 const int beginIdB,
const int n);
889 cudaReal
const c,
const int beginIdA,
890 const int beginIdB,
const int n);
917 const int beginIdA,
const int beginIdB,
const int n);
938 const int beginIdA,
const int beginIdB,
const int n);
964 const int beginIdA,
const int beginIdB,
const int n);
985 const int beginIdA,
const int beginIdB,
const int n);
1007 const int beginIdA,
const int beginIdB,
const int n);
1028 const int beginIdA,
const int n);
1048 const int beginIdA,
const int n);
1068 const int beginIdA,
const int n);
1093 const int beginIdA,
const int beginIdB,
const int n);
1114 const int beginIdA,
const int beginIdB,
const int n);
1136 const int beginIdA,
const int beginIdB,
const int n);
1157 const int beginIdA,
const int n);
1177 const int beginIdA,
const int n);
1197 const int beginIdA,
const int n);
1222 const int beginIdA,
const int beginIdB,
const int n);
1244 const int beginIdA,
const int beginIdB,
const int n);
1266 const int beginIdA,
const int beginIdB,
const int n);
1287 const int beginIdA,
const int n);
1307 const int beginIdA,
const int n);
1327 const int beginIdA,
const int n);
1352 const int beginIdA,
const int beginIdB,
const int n);
1373 const int beginIdA,
const int beginIdB,
const int n);
1394 const int beginIdA,
const int n);
1414 const int beginIdA,
const int n);
1432#include "VecOpMisc.h"
Dynamic array on the GPU device with aligned data.
int capacity() const
Return allocated capacity.
void addEqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector addition in-place, a[i] += b[i], kernel wrapper (cudaReal).
void eqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector assignment, a[i] = b[i], kernel wrapper (cudaReal).
void subEqS(DeviceArray< cudaReal > &a, cudaReal const b, const int beginIdA, const int n)
Vector subtraction in-place, a[i] -= b, kernel wrapper (cudaReal).
void addEqS(DeviceArray< cudaReal > &a, cudaReal const b, const int beginIdA, const int n)
Vector addition in-place, a[i] += b, kernel wrapper (cudaReal).
void subVS(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c, const int beginIdA, const int beginIdB, const int n)
Vector subtraction, a[i] = b[i] - c, kernel wrapper (cudaReal).
void divEqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector division in-place, a[i] /= b[i], kernel wrapper (cudaReal).
void divVV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c, const int beginIdA, const int beginIdB, const int beginIdC, const int n)
Vector division, a[i] = b[i] / c[i], kernel wrapper (cudaReal).
void addVV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c, const int beginIdA, const int beginIdB, const int beginIdC, const int n)
Vector addition, a[i] = b[i] + c[i], kernel wrapper (cudaReal).
void mulVV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c, const int beginIdA, const int beginIdB, const int beginIdC, const int n)
Vector multiplication, a[i] = b[i] * c[i], kernel wrapper (cudaReal).
void subVV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c, const int beginIdA, const int beginIdB, const int beginIdC, const int n)
Vector subtraction, a[i] = b[i] - c[i], kernel wrapper (cudaReal).
void addVS(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c, const int beginIdA, const int beginIdB, int n)
Vector addition, a[i] = b[i] + c, kernel wrapper (cudaReal).
void mulEqS(DeviceArray< cudaReal > &a, cudaReal const b, const int beginIdA, const int n)
Vector multiplication in-place, a[i] *= b, kernel wrapper (cudaReal).
void mulEqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector multiplication in-place, a[i] *= b[i], kernel wrapper (cudaReal).
void subEqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector subtraction in-place, a[i] -= b[i], kernel wrapper (cudaReal).
void eqS(DeviceArray< cudaReal > &a, cudaReal const b, const int beginIdA, const int n)
Vector assignment, a[i] = b, kernel wrapper (cudaReal).
void mulVS(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c, const int beginIdA, const int beginIdB, const int n)
Vector multiplication, a[i] = b[i] * c, kernel wrapper (cudaReal).
void divVS(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c, const int beginIdA, const int beginIdB, const int n)
Vector division, a[i] = b[i] / c, kernel wrapper (cudaReal).
void expV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector exponentiation, a[i] = exp(b[i]), kernel wrapper (cudaReal).
void divEqS(DeviceArray< cudaReal > &a, cudaReal const b, const int beginIdA, const int n)
Vector division in-place, a[i] /= b, kernel wrapper (cudaReal).
PSCF package top-level namespace.