PSCF v1.2
cuda/RFieldComparison.h
1#ifndef PRDC_CUDA_R_FIELD_COMPARISON_H
2#define PRDC_CUDA_R_FIELD_COMPARISON_H
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 "RField.h"
12#include <pscf/math/FieldComparison.h>
13
14namespace Pscf {
15namespace Prdc {
16namespace Cuda {
17
18 using namespace Util;
19 using namespace Pscf::Prdc;
20 using namespace Pscf::Prdc::Cuda;
21
27 template <int D>
29 {
30 public:
31
36
43 double compare(RField<D> const& a, RField<D> const& b);
44
51 double
52 compare(DArray< RField<D> > const& a, DArray< RField<D> > const& b);
53
57 double maxDiff() const
58 { return fieldComparison_.maxDiff(); }
59
63 double rmsDiff() const
64 { return fieldComparison_.rmsDiff(); }
65
66 private:
67
68 // True if a comparison has been made, false otherwise.
69 bool compared_;
70
71 // Use FieldComparison template via composition
73
74 };
75
76 #ifndef PRDC_CUDA_R_FIELD_COMPARISON_TPP
77 extern template class RFieldComparison<1>;
78 extern template class RFieldComparison<2>;
79 extern template class RFieldComparison<3>;
80 #endif
81
82} // namespace Prdc::Cuda
83} // namespace Prdc
84} // namespace Pscf
85#endif
Comparison of element-by-element differences between field arrays.
double compare(RField< D > const &a, RField< D > const &b)
Comparator for fields in real-space (r-grid) format.
Field of real double precision values on an FFT mesh.
double rmsDiff() const
Get precomputed rms difference.
double maxDiff() const
Get precomputed maximum element-by-element difference.
Dynamically allocatable contiguous array template.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.