PSCF v1.2
|
Comparator for CField (k-grid) arrays. More...
#include <CFieldComparison.h>
Public Member Functions | |
CFieldComparison () | |
Default constructor. | |
double | compare (CField< D > const &a, CField< D > const &b) |
Compare individual fields. | |
double | compare (DArray< CField< D > > const &a, DArray< CField< D > > const &b) |
Compare arrays of fields associated with different monomer types. | |
double | maxDiff () const |
Return the precomputed maximum element-by-element difference. | |
double | rmsDiff () const |
Return the precomputed root-mean-squared difference. | |
Comparator for CField (k-grid) arrays.
Definition at line 26 of file cpu/CFieldComparison.h.
Pscf::Prdc::Cuda::CFieldComparison< D >::CFieldComparison | ( | ) |
Default constructor.
Initializes maxDiff and rmsDiff to zero.
Definition at line 20 of file cpu/CFieldComparison.tpp.
double Pscf::Prdc::Cuda::CFieldComparison< D >::compare | ( | CField< D > const & | a, |
CField< D > const & | b ) |
Compare individual fields.
Array dimensions must agree. An Exception is thrown if the capacities of fields a and b are not equal.
a | 1st field |
b | 2nd field |
Definition at line 28 of file cpu/CFieldComparison.tpp.
References Util::Array< Data >::capacity(), and UTIL_CHECK.
double Pscf::Prdc::Cuda::CFieldComparison< D >::compare | ( | DArray< CField< D > > const & | a, |
DArray< CField< D > > const & | b ) |
Compare arrays of fields associated with different monomer types.
All array dimensions must agree.
An exception is thrown if the capacities of the enclosing DArrays (the number of monomers) are not equal or if the capacities of any pair of individual fields (number of grid points or basis functions) are not equal.
a | 1st DArray of field |
b | 2nd DArray of field |
Definition at line 63 of file cpu/CFieldComparison.tpp.
References UTIL_CHECK.
|
inline |
Return the precomputed maximum element-by-element difference.
This function returns the maximum difference between corresponding field array elements found by the most recent comparison.
Definition at line 74 of file cpu/CFieldComparison.h.
|
inline |
Return the precomputed root-mean-squared difference.
This function returns the root-mean-squared difference between corresponding elements found by the most recent comparison.
Definition at line 83 of file cpu/CFieldComparison.h.