PSCF v1.2
cuda/RField.tpp
1#ifndef PRDC_CUDA_R_FIELD_TPP
2#define PRDC_CUDA_R_FIELD_TPP
3
4/*
5* PSCF Package
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
13namespace Pscf {
14namespace Prdc {
15namespace Cuda {
16
17 using namespace Util;
18 using namespace Pscf;
19
23 template <int D>
25 : DeviceArray<cudaReal>()
26 {}
27
31 template <int D>
32 RField<D>::RField(IntVec<D> const & meshDimensions)
33 : DeviceArray<cudaReal>()
35
36 /*
37 * Copy constructor.
38 */
39 template <int D>
40 RField<D>::RField(const RField<D>& other)
41 : DeviceArray<cudaReal>(other),
42 meshDimensions_(0)
43 { meshDimensions_ = other.meshDimensions_; }
44
45 /*
46 * Destructor.
47 */
48 template <int D>
50 {}
51
52 /*
53 * Allocate the underlying C array for data on a regular mesh.
54 */
55 template <int D>
56 void RField<D>::allocate(IntVec<D> const & meshDimensions)
57 {
58 int size = 1;
59 for (int i = 0; i < D; ++i) {
60 UTIL_CHECK(meshDimensions[i] > 0);
61 meshDimensions_[i] = meshDimensions[i];
62 size *= meshDimensions[i];
63 }
65 }
66
67 /*
68 * Associate this object with a slice of another DeviceArray.
69 */
70 template <int D>
72 IntVec<D> const & meshDimensions)
73 {
74 int size = 1;
75 for (int i = 0; i < D; ++i) {
76 UTIL_CHECK(meshDimensions[i] > 0);
77 meshDimensions_[i] = meshDimensions[i];
78 size *= meshDimensions[i];
79 }
80 DeviceArray<cudaReal>::associate(arr, beginId, size);
81 }
82
83 /*
84 * Assignment from another RField<D>.
85 */
86 template <int D>
88 {
90 meshDimensions_ = other.meshDimensions_;
91
92 return *this;
93 }
94
95 /*
96 * Assignment of this RField<D> from RHS HostDArray<Data> host array.
97 */
98 template <int D>
100 {
101 // Preconditions: both arrays must be allocated with equal capacities
102 if (!other.isAllocated()) {
103 UTIL_THROW("Error: RHS HostDArray<cudaReal> is not allocated.");
104 }
105 if (!isAllocated()) {
106 UTIL_THROW("Error: LHS RField<D> is not allocated.");
107 }
108 if (capacity_ != other.capacity()) {
109 UTIL_THROW("Cannot assign Fields of unequal capacity");
110 }
111
112 // Use base class assignment operator to copy elements
114
115 return *this;
116 }
117
118}
119}
120}
121#endif
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
virtual DeviceArray< Data > & operator=(const DeviceArray< Data > &other)
Assignment operator, assign from another DeviceArray<Data> array.
void associate(DeviceArray< Data > &arr, int beginId, int capacity)
Associate this object with a slice of a different DeviceArray.
void allocate(int capacity)
Allocate the underlying C array on the device.
Template for dynamic array stored in host CPU memory.
Definition HostDArray.h:43
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Field of real double precision values on an FFT mesh.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for an FFT grid.
const IntVec< D > & meshDimensions() const
Return mesh dimensions by constant reference.
Definition cpu/RField.h:112
RField()
Default constructor.
virtual ~RField()
Destructor.
void associate(DeviceArray< cudaReal > &arr, int beginId, IntVec< D > const &meshDimensions)
Associate this object with a slice of another DeviceArray.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for data on a regular mesh.
RField< D > & operator=(const RField< D > &other)
Assignment operator, assignment from another RField<D>.
int capacity() const
Return allocated size.
Definition Array.h:159
bool isAllocated() const
Return true if this DArray has been allocated, false otherwise.
Definition DArray.h:247
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.