PSCF v1.2
cuda/RFieldDftComparison.tpp
1#ifndef PRDC_CUDA_R_FIELD_DFT_COMPARISON_TPP
2#define PRDC_CUDA_R_FIELD_DFT_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 "RFieldDftComparison.h"
12#include <pscf/cuda/HostDArray.h>
13#include <cmath>
14
15namespace Pscf {
16namespace Prdc {
17namespace Cuda {
18
19 // Default Constructor
20 template <int D>
22 : maxDiff_(0.0),
23 rmsDiff_(0.0)
24 {};
25
26 // Comparator for individual fields.
27 template <int D>
28 double RFieldDftComparison<D>::compare(RFieldDft<D> const& a,
29 RFieldDft<D> const& b)
30 {
31 UTIL_CHECK(a.capacity() > 0);
32 UTIL_CHECK(a.capacity() == b.capacity());
33 int capacity = a.capacity();
34
35 HostDArray<cudaComplex> ha;
36 HostDArray<cudaComplex> hb;
37 ha.allocate(capacity);
38 hb.allocate(capacity);
39 ha = a;
40 hb = b;
41
42 double diffSq, diff, d0, d1;
43 maxDiff_ = 0.0;
44 rmsDiff_ = 0.0;
45 for (int i = 0; i < capacity; ++i) {
46 d0 = ha[i].x - hb[i].x;
47 d1 = ha[i].y - hb[i].y;
48 diffSq = d0*d0 + d1*d1;
49 diff = sqrt(diffSq);
50 if (diff > maxDiff_) {
51 maxDiff_ = diff;
52 }
53 rmsDiff_ += diffSq;
54 }
55 rmsDiff_ = rmsDiff_/double(capacity);
56 rmsDiff_ = sqrt(rmsDiff_);
57 return maxDiff_;
58 }
59
60 // Comparator for arrays of fields
61 template <int D>
62 double RFieldDftComparison<D>::compare(DArray< RFieldDft<D> > const & a,
63 DArray< RFieldDft<D> > const & b)
64 {
65 UTIL_CHECK(a.capacity() > 0);
66 UTIL_CHECK(a.capacity() == b.capacity());
67 UTIL_CHECK(a[0].capacity() > 0);
68 int capacity = a[0].capacity();
69 int nFields = a.capacity();
70
73 ha.allocate(nFields);
74 hb.allocate(nFields);
75 for (int i = 0; i < nFields; i++) {
76 ha[i].allocate(capacity);
77 hb[i].allocate(capacity);
78 ha[i] = a[i];
79 hb[i] = b[i];
80 }
81
82 double diffSq, diff, d0, d1;
83 maxDiff_ = 0.0;
84 rmsDiff_ = 0.0;
85 int i, j;
86 for (i = 0; i < nFields; ++i) {
87 for (j = 0; j < capacity; ++j) {
88 d0 = ha[i][j].x - hb[i][j].x;
89 d1 = ha[i][j].y - hb[i][j].y;
90 diffSq = d0*d0 + d1*d1;
91 diff = sqrt(diffSq);
92 if (diff > maxDiff_) {
93 maxDiff_ = diff;
94 }
95 rmsDiff_ += diffSq;
96 }
97 }
98 rmsDiff_ = rmsDiff_/double(nFields*capacity);
99 rmsDiff_ = sqrt(rmsDiff_);
100 return maxDiff_;
101 }
102
103}
104}
105}
106#endif
RFieldDftComparison()
Default constructor.
Dynamically allocatable contiguous array template.
void allocate(int capacity)
Allocate the underlying C array.
Definition DArray.h:199
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1