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 const cudaReal c,
const int beginIdA,
286 const int beginIdB,
const int n);
310 const cudaComplex c,
const int beginIdA,
311 const int beginIdB,
const int n);
335 const cudaComplex c,
const int beginIdA,
336 const int beginIdB,
const int n);
360 const cudaReal 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 const cudaReal c,
const int beginIdA,
496 const int beginIdB,
const int n);
520 const cudaComplex c,
const int beginIdA,
521 const int beginIdB,
const int n);
545 const cudaComplex c,
const int beginIdA,
546 const int beginIdB,
const int n);
571 const cudaReal 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 const cudaReal c,
const int beginIdA,
708 const int beginIdB,
const int n);
732 const cudaComplex c,
const int beginIdA,
733 const int beginIdB,
const int n);
759 const int beginIdA,
const int beginIdB,
const int n);
785 const int beginIdA,
const int beginIdB,
const int n);
816 const int beginIdB,
const int beginIdC,
const int n);
842 const int beginIdB,
const int beginIdC,
const int n);
867 const cudaReal c,
const int beginIdA,
868 const int beginIdB,
const int n);
892 const cudaReal c,
const int beginIdA,
893 const int beginIdB,
const int n);
918 const int beginIdA,
const int beginIdC,
const int n);
944 const int beginIdA,
const int beginIdB,
const int n);
965 const int beginIdA,
const int beginIdB,
const int n);
991 const int beginIdA,
const int beginIdB,
const int n);
1012 const int beginIdA,
const int beginIdB,
const int n);
1034 const int beginIdA,
const int beginIdB,
const int n);
1055 const int beginIdA,
const int n);
1075 const int beginIdA,
const int n);
1095 const int beginIdA,
const int n);
1120 const int beginIdA,
const int beginIdB,
const int n);
1141 const int beginIdA,
const int beginIdB,
const int n);
1163 const int beginIdA,
const int beginIdB,
const int n);
1184 const int beginIdA,
const int n);
1204 const int beginIdA,
const int n);
1224 const int beginIdA,
const int n);
1249 const int beginIdA,
const int beginIdB,
const int n);
1271 const int beginIdA,
const int beginIdB,
const int n);
1293 const int beginIdA,
const int beginIdB,
const int n);
1314 const int beginIdA,
const int n);
1334 const int beginIdA,
const int n);
1354 const int beginIdA,
const int n);
1379 const int beginIdA,
const int beginIdB,
const int n);
1400 const int beginIdA,
const int beginIdB,
const int n);
1421 const int beginIdA,
const int n);
1441 const int beginIdA,
const int n);
1459#include "VecOpMisc.h"
Dynamic array on the GPU device with aligned data.
int capacity() const
Return allocated capacity.
void subVV(Array< double > &a, Array< double > const &b, Array< double > const &c)
Vector subtraction, a[i] = b[i] - c[i].
void divSV(Array< double > &a, double b, Array< double > const &c)
Vector division, a[i] = b / c[i].
void mulEqV(Array< double > &a, Array< double > const &b)
Vector multiplication in-place, a[i] *= b[i].
void addEqV(Array< double > &a, Array< double > const &b)
Vector addition in-place, a[i] += b[i].
void eqV(Array< double > &a, Array< double > const &b)
Vector assignment, a[i] = b[i].
void mulVS(Array< double > &a, Array< double > const &b, double c)
Vector multiplication, a[i] = b[i] * c.
void divEqS(Array< double > &a, double b)
Vector division in-place, a[i] /= b.
void addEqS(Array< double > &a, double b)
Vector addition in-place, a[i] += b.
void addVV(Array< double > &a, Array< double > const &b, Array< double > const &c)
Vector addition, a[i] = b[i] + c[i].
void subVS(Array< double > &a, Array< double > const &b, double c)
Vector subtraction, a[i] = b[i] - c.
void divEqV(Array< double > &a, Array< double > const &b)
Vector division in-place, a[i] /= b[i].
void mulEqS(Array< double > &a, double b)
Vector multiplication in-place, a[i] *= b.
void divVS(Array< double > &a, Array< double > const &b, double c)
Vector division, a[i] = b[i] / c.
void divVV(Array< double > &a, Array< double > const &b, Array< double > const &c)
Vector division, a[i] = b[i] / c[i].
void eqS(Array< double > &a, double b)
Vector assignment, a[i] = b.
void addVS(Array< double > &a, Array< double > const &b, double c)
Vector addition, a[i] = b[i] + c.
void mulVV(Array< double > &a, Array< double > const &b, Array< double > const &c)
Vector multiplication, a[i] = b[i] * c[i].
void subEqV(Array< double > &a, Array< double > const &b)
Vector subtraction in-place, a[i] -= b[i].
void expV(Array< double > &a, Array< double > const &b)
Vector exponentiation, a[i] = exp(b[i]).
void subEqS(Array< double > &a, double b)
Vector subtraction in-place, a[i] -= b.
Functions that perform element-wise vector operations on the GPU.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Periodic fields and crystallography.
PSCF package top-level namespace.