PSCF v1.2
FftwDArray.h
1#ifndef PRDC_CPU_FFTW_D_ARRAY_H
2#define PRDC_CPU_FFTW_D_ARRAY_H
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 <util/containers/Array.h>
12#include <util/global.h>
13
14#include <fftw3.h>
15
16namespace Pscf {
17namespace Prdc {
18namespace Cpu {
19
20 using namespace Util;
21
31 template <typename Data>
32 class FftwDArray : public Array<Data>
33 {
34
35 public:
36
40 FftwDArray();
41
47 virtual ~FftwDArray();
48
56 void allocate(int capacity);
57
63 virtual void deallocate();
64
68 bool isAllocated() const;
69
76 template <class Archive>
77 void serialize(Archive& ar, const unsigned int version);
78
79 protected:
80
81 using Array<Data>:: data_;
82 using Array<Data>:: capacity_;
83
84 private:
85
89 FftwDArray(FftwDArray<Data> const & other);
90
94 FftwDArray<Data>& operator = (FftwDArray<Data> const & other);
95
96 };
97
98 /*
99 * Return true if the FftwDArray has been allocated, false otherwise.
100 */
101 template <typename Data>
103 { return (bool) data_; }
104
105 /*
106 * Serialize a FftwDArray to/from an Archive.
107 */
108 template <typename Data>
109 template <class Archive>
110 void FftwDArray<Data>::serialize(Archive& ar, const unsigned int version)
111 {
112 int capacity;
113 if (Archive::is_saving()) {
114 capacity = capacity_;
115 }
116 ar & capacity;
117 if (Archive::is_loading()) {
118 if (!isAllocated()) {
119 if (capacity > 0) {
120 allocate(capacity);
121 }
122 } else {
123 if (capacity != capacity_) {
124 UTIL_THROW("Inconsistent FftwDArray capacities");
125 }
126 }
127 }
128 if (isAllocated()) {
129 for (int i = 0; i < capacity_; ++i) {
130 ar & data_[i];
131 }
132 }
133 }
134
135}
136}
137}
138#include "FftwDArray.tpp"
139#endif
Dynamic array with data aligned for use with FFTW library.
Definition FftwDArray.h:33
void serialize(Archive &ar, const unsigned int version)
Serialize a FftwDArray to/from an Archive.
Definition FftwDArray.h:110
void allocate(int capacity)
Allocate the underlying C array.
virtual ~FftwDArray()
Destructor.
FftwDArray()
Default constructor.
virtual void deallocate()
Dellocate the underlying C array.
bool isAllocated() const
Return true if the FftwDArray has been allocated, false otherwise.
Definition FftwDArray.h:102
Array container class template.
Definition Array.h:34
Data * data_
Pointer to an array of Data elements.
Definition Array.h:109
int capacity() const
Return allocated size.
Definition Array.h:159
int capacity_
Allocated size of the data_ array.
Definition Array.h:112
File containing preprocessor macros for error handling.
#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.