PSCF v1.2
cuda/CFieldComparison.tpp
1#ifndef PRDC_CUDA_C_FIELD_COMPARISON_TPP
2#define PRDC_CUDA_C_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 "CFieldComparison.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 CFieldComparison<D>::compare(CField<D> const& a,
29 CField<D> const& b)
30 {
31 UTIL_CHECK(a.capacity() > 0);
32 UTIL_CHECK(a.capacity() == b.capacity());
33 int capacity = a.capacity();
34
35 // Allocate arrays on CPU host
36 HostDArray<cudaComplex> ha;
37 HostDArray<cudaComplex> hb;
38 ha.allocate(capacity);
39 hb.allocate(capacity);
40
41 // Copy field data from device to host
42 ha = a;
43 hb = b;
44
45 // Compare fields on host
46 double diffSq, diff, d0, d1;
47 maxDiff_ = 0.0;
48 rmsDiff_ = 0.0;
49 for (int i = 0; i < capacity; ++i) {
50 d0 = ha[i].x - hb[i].x;
51 d1 = ha[i].y - hb[i].y;
52 diffSq = d0*d0 + d1*d1;
53 diff = sqrt(diffSq);
54 if (diff > maxDiff_) {
55 maxDiff_ = diff;
56 }
57 rmsDiff_ += diffSq;
58 }
59 rmsDiff_ = rmsDiff_/double(capacity);
60 rmsDiff_ = sqrt(rmsDiff_);
61 return maxDiff_;
62 }
63
64 // Comparator for arrays of fields
65 template <int D>
66 double CFieldComparison<D>::compare(DArray< CField<D> > const & a,
67 DArray< CField<D> > const & b)
68 {
69 UTIL_CHECK(a.capacity() > 0);
70 UTIL_CHECK(a.capacity() == b.capacity());
71 UTIL_CHECK(a[0].capacity() > 0);
72 int capacity = a[0].capacity();
73 int nFields = a.capacity();
74
75 // Allocate arrays on host
78 ha.allocate(nFields);
79 hb.allocate(nFields);
80 for (int i = 0; i < nFields; i++) {
81 ha[i].allocate(capacity);
82 hb[i].allocate(capacity);
83 }
84
85 // Copy data from device to host
86 for (int i = 0; i < nFields; i++) {
87 ha[i] = a[i];
88 hb[i] = b[i];
89 }
90
91 // Perform comparison using host arrays
92 double diffSq, diff, d0, d1;
93 maxDiff_ = 0.0;
94 rmsDiff_ = 0.0;
95 int i, j;
96 for (i = 0; i < nFields; ++i) {
97 for (j = 0; j < capacity; ++j) {
98 d0 = ha[i][j].x - hb[i][j].x;
99 d1 = ha[i][j].y - hb[i][j].y;
100 diffSq = d0*d0 + d1*d1;
101 diff = sqrt(diffSq);
102 if (diff > maxDiff_) {
103 maxDiff_ = diff;
104 }
105 rmsDiff_ += diffSq;
106 }
107 }
108 rmsDiff_ = rmsDiff_/double(nFields*capacity);
109 rmsDiff_ = sqrt(rmsDiff_);
110 return maxDiff_;
111 }
112
113}
114}
115}
116#endif
CFieldComparison()
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