PSCF v1.2
RFieldComparison.tpp
1#ifndef PRDC_CUDA_R_FIELD_COMPARISON_TPP
2#define PRDC_CUDA_R_FIELD_COMPARISON_TPP
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
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 "RFieldComparison.h"
12#include <pscf/cuda/HostDArray.h>
13
14namespace Pscf {
15namespace Prdc {
16namespace Cuda {
17
18 // Default Constructor
19 template <int D>
22
23 // Comparator for individual fields
24 template <int D>
26 RField<D> const& b)
27 {
28 int nPoints = a.capacity();
29
30 // Copy fields a,b to local arrays ha, hb on the host CPU
31 HostDArray<cudaReal> ha(nPoints);
32 HostDArray<cudaReal> hb(nPoints);
33 ha = a;
34 hb = b;
35
36 fieldComparison_.compare(ha, hb);
37 compared_ = true;
38
39 return fieldComparison_.maxDiff();
40 }
41
42 // Comparator for arrays of fields
43 template <int D>
45 DArray<RField<D>> const& b)
46 {
47 int nFields = a.capacity();
48 int nPoints = a[0].capacity();
49
50 // Copy fields to HostDArray containers on CPU host
52 ha.allocate(nFields);
53 hb.allocate(nFields);
54 for (int i = 0; i < nFields; i++) {
55 ha[i] = a[i];
56 hb[i] = b[i];
57 }
58
59 // Perform comparison
60 fieldComparison_.compare(ha, hb);
61 compared_ = true;
62
63 return fieldComparison_.maxDiff();
64 }
65
66}
67}
68}
69#endif
Template for dynamic array stored in host CPU memory.
Definition HostDArray.h:43
Field of real double precision values on an FFT mesh.
double compare(RField< D > const &a, RField< D > const &b)
Comparator for individual fields.
int capacity() const
Return allocated size.
Definition Array.h:159
Dynamically allocatable contiguous array template.
void allocate(int capacity)
Allocate the underlying C array.
Definition DArray.h:199
PSCF package top-level namespace.
Definition param_pc.dox:1