1#ifndef PRDC_CUDA_R_FIELD_DFT_COMPARISON_TPP
2#define PRDC_CUDA_R_FIELD_DFT_COMPARISON_TPP
11#include "RFieldDftComparison.h"
12#include <pscf/cuda/HostDArray.h>
28 double RFieldDftComparison<D>::compare(RFieldDft<D>
const& a,
29 RFieldDft<D>
const& b)
33 int capacity = a.capacity();
35 HostDArray<cudaComplex> ha;
36 HostDArray<cudaComplex> hb;
37 ha.allocate(capacity);
38 hb.allocate(capacity);
42 double diffSq, diff, d0, d1;
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;
50 if (diff > maxDiff_) {
55 rmsDiff_ = rmsDiff_/double(capacity);
56 rmsDiff_ = sqrt(rmsDiff_);
62 double RFieldDftComparison<D>::compare(
DArray< RFieldDft<D> >
const & a,
63 DArray< RFieldDft<D> >
const & b)
68 int capacity = a[0].capacity();
69 int nFields = a.capacity();
75 for (
int i = 0; i < nFields; i++) {
82 double diffSq, diff, d0, d1;
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;
92 if (diff > maxDiff_) {
98 rmsDiff_ = rmsDiff_/double(nFields*capacity);
99 rmsDiff_ = sqrt(rmsDiff_);
RFieldDftComparison()
Default constructor.
Dynamically allocatable contiguous array template.
void allocate(int capacity)
Allocate the underlying C array.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
PSCF package top-level namespace.