PSCF v1.2
fieldArrayUtil.h
1#ifndef PRDC_FIELD_ARRAY_UTIL_H
2#define PRDC_FIELD_ARRAY_UTIL_H
3
4/*
5* PSCF Package
6*
7* Copyright 2016 - 2025, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <prdc/cuda/types.h>
12#include <pscf/math/IntVec.h>
13#include <util/global.h>
14
15namespace Pscf {
16
17 using namespace Util;
18
19 template <class AT>
20 void allocateArrays(DArray<AT>& arrays, int n, int capacity)
21 {
22 UTIL_CHECK(!arrays.isAllocated());
23 arrays.allocate(n);
24 for (int i = 0; i < n; ++i) {
25 arrays[i].allocate(capacity);
26 }
27 }
28
29 template <int D, class FT>
30 void allocateFields(DArray<FT>& fields, int n, IntVec<D> const& dimension)
31 {
32 UTIL_CHECK(!fields.isAllocated());
33 fields.allocate(n);
34 for (int i = 0; i < n; ++i) {
35 fields[i].allocate(dimension);
36 }
37 }
38
39 template <class OAT, class IAT>
40 void copyArrays(DArray<OAT>& out, DArray<IAT> const& in)
41 {
42 int n = in.capacity();
43 UTIL_CHECK(out.capacity() == n);
44 for (int i = 0; i < n; ++i) {
45 UTIL_CHECK(in[i].capacity() == out[i].capacity());
46 out[i] = in[i];
47 }
48 }
49
50}
51#endif
int capacity() const
Return allocated size.
Definition Array.h:159
Dynamically allocatable contiguous array template.
void allocate(int capacity)
Allocate the underlying C array.
Definition DArray.h:199
bool isAllocated() const
Return true if this DArray has been allocated, false otherwise.
Definition DArray.h:247
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.