PSCF v1.2
VecOpFts.h
1#ifndef PSCF_VEC_OP_FTS_H
2#define PSCF_VEC_OP_FTS_H
3
4/*
5* PSCF Package
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <prdc/cuda/types.h>
12#include <pscf/cuda/DeviceArray.h>
13
14namespace Pscf {
15namespace Rpg {
16
31namespace VecOpFts {
32
39 void mcftsScale(DeviceArray<Prdc::Cuda::cudaReal>& a,
40 Prdc::Cuda::cudaReal const b);
41
49 void fourierMove(DeviceArray<Prdc::Cuda::cudaComplex>& a,
50 DeviceArray<Prdc::Cuda::cudaReal> const & b,
51 DeviceArray<Prdc::Cuda::cudaReal> const & c);
52
56 void computeDField(DeviceArray<Prdc::Cuda::cudaReal>& d,
57 DeviceArray<Prdc::Cuda::cudaReal> const & Wc,
58 DeviceArray<Prdc::Cuda::cudaReal> const & Cc,
59 Prdc::Cuda::cudaReal const a,
60 Prdc::Cuda::cudaReal const b,
61 Prdc::Cuda::cudaReal const s);
62
66 void computeForceBias(DeviceArray<Prdc::Cuda::cudaReal>& result,
67 DeviceArray<Prdc::Cuda::cudaReal> const & di,
68 DeviceArray<Prdc::Cuda::cudaReal> const & df,
69 DeviceArray<Prdc::Cuda::cudaReal> const & dwc,
70 Prdc::Cuda::cudaReal mobility);
71
72}
75}
76}
77
78#endif
void computeDField(DeviceArray< cudaReal > &d, DeviceArray< cudaReal > const &Wc, DeviceArray< cudaReal > const &Cc, cudaReal const a, cudaReal const b, cudaReal const s)
Compute d field (functional derivative of H[w])
Definition VecOpFts.cu:112
void fourierMove(DeviceArray< cudaComplex > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c)
Add array b to real part of a and array c to imaginary part of a.
Definition VecOpFts.cu:92
void mcftsScale(DeviceArray< cudaReal > &a, cudaReal const b)
Rescale array a from [0,1] to [-b, b], GPU kernel wrapper.
Definition VecOpFts.cu:77
void computeForceBias(DeviceArray< cudaReal > &result, DeviceArray< cudaReal > const &di, DeviceArray< cudaReal > const &df, DeviceArray< cudaReal > const &dwc, cudaReal mobility)
Compute force bias.
Definition VecOpFts.cu:133
PSCF package top-level namespace.
Definition param_pc.dox:1