-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathMemoryStorage.h
527 lines (481 loc) · 20.7 KB
/
MemoryStorage.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
// ---------------------------------------------------------------------
//
// Copyright (c) 2017-2025 The Regents of the University of Michigan and DFT-FE
// authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
/*
* @author Ian C. Lin, Sambit Das.
*/
#ifndef dftfeMemoryStorage_h
#define dftfeMemoryStorage_h
#include <MemoryManager.h>
#include <TypeConfig.h>
#include <vector>
namespace dftfe
{
namespace utils
{
template <typename ValueType, dftfe::utils::MemorySpace memorySpace>
class MemoryStorage
{
/**
* @brief A class template to provide an interface that can act similar to
* STL vectors but with different MemorySpace---
* HOST (cpu) , DEVICE (gpu), etc,.
*
* @tparam ValueType The underlying value type for the MemoryStorage
* (e.g., int, double, complex<double>, etc.)
* @tparam memorySpace The memory space in which the MemoryStorage needs
* to reside
*
*/
//
// typedefs
//
public:
typedef ValueType value_type;
typedef ValueType * pointer;
typedef ValueType & reference;
typedef const ValueType &const_reference;
typedef ValueType * iterator;
typedef const ValueType *const_iterator;
public:
MemoryStorage() = default;
/**
* @brief Copy constructor for a MemoryStorage
* @param[in] u MemoryStorage object to copy from
*/
MemoryStorage(const MemoryStorage &u);
/**
* @brief Move constructor for a Vector
* @param[in] u Vector object to move from
*/
MemoryStorage(MemoryStorage &&u) noexcept;
/**
* @brief Constructor for Vector with size and initial value arguments
* @param[in] size size of the Vector
* @param[in] initVal initial value of elements of the Vector
*/
explicit MemoryStorage(std::size_t size, ValueType initVal = 0);
/**
* @brief Destructor
*/
~MemoryStorage();
/**
* @brief clear and set to d_data to nullptr
*/
void
clear();
/**
* @brief Set all the entries to a given value
* @param[in] val The value to which the entries are to be set
*/
void
setValue(const ValueType val);
/**
* @brief Return iterator pointing to the beginning of point
* data.
*
* @returns Iterator pointing to the beginning of Vector.
*/
iterator
begin();
/**
* @brief Return iterator pointing to the beginning of Vector
* data.
*
* @returns Constant iterator pointing to the beginning of
* Vector.
*/
const_iterator
begin() const;
/**
* @brief Return iterator pointing to the end of Vector data.
*
* @returns Iterator pointing to the end of Vector.
*/
iterator
end();
/**
* @brief Return iterator pointing to the end of Vector data.
*
* @returns Constant iterator pointing to the end of
* Vector.
*/
const_iterator
end() const;
/**
* @brief Copy assignment operator
* @param[in] rhs the rhs Vector from which to copy
* @returns reference to the lhs Vector
*/
MemoryStorage &
operator=(const MemoryStorage &rhs);
/**
* @brief Move assignment constructor
* @param[in] rhs the rhs Vector from which to move
* @returns reference to the lhs Vector
*/
MemoryStorage &
operator=(MemoryStorage &&rhs) noexcept;
/**
* @brief Operator to get a reference to a element of the Vector
* @param[in] i is the index to the element of the Vector
* @returns reference to the element of the Vector
* @throws exception if i >= size of the Vector
*/
reference operator[](std::size_t i);
/**
* @brief Operator to get a const reference to a element of the Vector
* @param[in] i is the index to the element of the Vector
* @returns const reference to the element of the Vector
* @throws exception if i >= size of the Vector
*/
const_reference operator[](std::size_t i) const;
void
swap(MemoryStorage &rhs);
/**
* @brief Deallocates and then resizes Vector with new size
* and initial value arguments
* @param[in] size size of the Vector
* @param[in] initVal initial value of elements of the Vector
*/
void
resize(std::size_t size, ValueType initVal = ValueType());
/**
* @brief Returns the dimension of the Vector
* @returns size of the Vector
*/
std::size_t
size() const;
/**
* @brief Return the raw pointer to the Vector
* @return pointer to data
*/
ValueType *
data() noexcept;
/**
* @brief Return the raw pointer to the Vector without modifying the values
* @return pointer to const data
*/
const ValueType *
data() const noexcept;
/**
* @brief Copies the data to a MemoryStorage object in a different memory space.
* This provides a seamless interface to copy back and forth between
* memory spaces , including between the same memory spaces.
*
* @note The destination MemoryStorage must be pre-allocated appropriately
*
* @tparam memorySpaceDst memory space of the destination MemoryStorage
* @param[in] dstMemoryStorage reference to the destination
* MemoryStorage. It must be pre-allocated appropriately
* @param[out] dstMemoryStorage reference to the destination
* MemoryStorage with the data copied into it
* @throw utils::LengthError exception if the size of dstMemoryStorage is
* less than underlying MemoryStorage
*/
template <dftfe::utils::MemorySpace memorySpaceDst>
void
copyTo(MemoryStorage<ValueType, memorySpaceDst> &dstMemoryStorage) const;
/**
* @brief Copies the data to a MemoryStorage object in a different memory space.
* This provides a seamless interface to copy back and forth between
* memory spaces , including between the same memory spaces. This is a
* more granular version of the above copyTo function as it provides
* transfer from a specific portion of the source MemoryStorage to a
* specific portion of the destination MemoryStorage.
*
* @note The destination MemoryStorage must be pre-allocated appropriately
*
* @tparam memorySpaceDst memory space of the destination MemoryStorage
* @param[in] dstMemoryStorage reference to the destination
* MemoryStorage. It must be pre-allocated appropriately
* @param[in] N number of entries of the source MemoryStorage
* that needs to be copied to the destination MemoryStorage
* @param[in] srcOffset offset relative to the start of the source
* MemoryStorage from which we need to copy data
* @param[in] dstOffset offset relative to the start of the destination
* MemoryStorage to which we need to copy data
* @param[out] dstMemoryStorage reference to the destination
* MemoryStorage with the data copied into it
* @throw utils::LengthError exception if the size of dstMemoryStorage is
* less than N + dstOffset
* @throw utils::LengthError exception if the size of underlying
* MemoryStorage is less than N + srcOffset
*/
template <dftfe::utils::MemorySpace memorySpaceDst>
void
copyTo(MemoryStorage<ValueType, memorySpaceDst> &dstMemoryStorage,
const std::size_t N,
const std::size_t srcOffset,
const std::size_t dstOffset) const;
/**
* @brief Copies data from a MemoryStorage object in a different memory space.
* This provides a seamless interface to copy back and forth between
* memory spaces, including between the same memory spaces.
*
* @note The MemoryStorage must be pre-allocated appropriately
*
* @tparam memorySpaceSrc memory space of the source MemoryStorage
* from which to copy
* @param[in] srcMemoryStorage reference to the source
* MemoryStorage
* @throw utils::LengthError exception if the size of underlying
* MemoryStorage is less than size of srcMemoryStorage
*/
template <dftfe::utils::MemorySpace memorySpaceSrc>
void
copyFrom(
const MemoryStorage<ValueType, memorySpaceSrc> &srcMemoryStorage);
/**
* @brief Copies data from a MemoryStorage object in a different memory space.
* This provides a seamless interface to copy back and forth between
* memory spaces, including between the same memory spaces.
* This is a more granular version of the above copyFrom function as it
* provides transfer from a specific portion of the source MemoryStorage
* to a specific portion of the destination MemoryStorage.
*
* @note The MemoryStorage must be pre-allocated appropriately
*
* @tparam memorySpaceSrc memory space of the source MemoryStorage
* from which to copy
* @param[in] srcMemoryStorage reference to the source
* MemoryStorage
* @param[in] N number of entries of the source MemoryStorage
* that needs to be copied to the destination MemoryStorage
* @param[in] srcOffset offset relative to the start of the source
* MemoryStorage from which we need to copy data
* @param[in] dstOffset offset relative to the start of the destination
* MemoryStorage to which we need to copy data
* @throw utils::LengthError exception if the size of srcMemoryStorage is
* less than N + srcOffset
* @throw utils::LengthError exception if the size of underlying
* MemoryStorage is less than N + dstOffset
*/
template <dftfe::utils::MemorySpace memorySpaceSrc>
void
copyFrom(const MemoryStorage<ValueType, memorySpaceSrc> &srcMemoryStorage,
const std::size_t N,
const std::size_t srcOffset,
const std::size_t dstOffset);
/**
* @brief Copies the data to a memory pointed by a raw pointer
* This provides a seamless interface to copy back and forth between
* memory spaces, including between the same memory spaces.
*
* @note The destination pointer must be pre-allocated to be
* at least of the size of the MemoryStorage
*
* @tparam memorySpaceDst memory space of the destination pointer
* @param[in] dst pointer to the destination. It must be pre-allocated
* appropriately
* @param[out] dst pointer to the destination with the data copied into it
*/
template <dftfe::utils::MemorySpace memorySpaceDst>
void
copyTo(ValueType *dst) const;
/**
* @brief Copies the data to a memory pointer by a raw pointer.
* This provides a seamless interface to copy back and forth between
* memory spaces , including between the same memory spaces. This is a
* more granular version of the above copyTo function as it provides
* transfer from a specific portion of the source MemoryStorage to a
* specific portion of the destination pointer.
*
* @note The destination pointer must be pre-allocated to be at least
* of the size N + dstOffset
*
* @tparam memorySpaceDst memory space of the destination pointer
* @param[in] dst pointer to the destination. It must be pre-allocated
* appropriately
* @param[in] N number of entries of the source MemoryStorage
* that needs to be copied to the destination pointer
* @param[in] srcOffset offset relative to the start of the source
* MemoryStorage from which we need to copy data
* @param[in] dstOffset offset relative to the start of the destination
* pointer to which we need to copy data
* @param[out] dst pointer to the destination with the data copied into it
* @throw utils::LengthError exception if the size of the MemoryStorage is
* less than N + srcOffset
*/
template <dftfe::utils::MemorySpace memorySpaceDst>
void
copyTo(ValueType * dst,
const std::size_t N,
const std::size_t srcOffset,
const std::size_t dstOffset) const;
/**
* @brief Copies data from a memory pointed by a raw pointer into
* the MemoryStorage object.
* This provides a seamless interface to copy back and forth between
* memory spaces, including between the same memory spaces.
*
* @note The src pointer must point to a memory chunk that is at least the
* size of the MemoryStorage
*
* @tparam memorySpaceSrc memory space of the source pointer
* from which to copy
* @param[in] src pointer to the source memory
*/
template <dftfe::utils::MemorySpace memorySpaceSrc>
void
copyFrom(const ValueType *src);
/**
* @brief Copies data from a memory pointer by a raw pointer into the MemoryStorage object.
* This provides a seamless interface to copy back and forth between
* memory spaces, including between the same memory spaces.
* This is a more granular version of the above copyFrom function as it
* provides transfer from a specific portion of the source memory
* to a specific portion of the destination MemoryStorage.
*
* @note The src pointer must point to a memory chunk that is at least
* the size of N + srcOffset
*
* @tparam memorySpaceSrc memory space of the source pointer
* from which to copy
* @param[in] src pointer to the source memory
* @param[in] N number of entries of the source pointer
* that needs to be copied to the destination MemoryStorage
* @param[in] srcOffset offset relative to the start of the source
* pointer from which we need to copy data
* @param[in] dstOffset offset relative to the start of the destination
* MemoryStorage to which we need to copy data
* @throw utils::LengthError exception if the size of the MemoryStorage is
* less than N + dstOffset
*/
template <dftfe::utils::MemorySpace memorySpaceSrc>
void
copyFrom(const ValueType * src,
const std::size_t N,
const std::size_t srcOffset,
const std::size_t dstOffset);
/**
* @brief Copies the data to a C++ STL vector, which always resides in
* the CPU. This provides a seamless interface to copy from any memory
* space to a C++ STL vector, including the case where source memory space
* is HOST (i.e., it resides on the CPU)
*
* @param[in] dst reference to the destination C++ STL vector to which
* the data needs to be copied.
* @param[out] dst reference to the destination C++ STL vector with
* the data copied into it
* @note If the size of the dst vector is less than the the size of
* the underlying MemoryStorage, it will be resized. Thus, for performance
* reasons, it is recommened that the dst STL vector be pre-allocated
* appropriately.
*/
void
copyTo(std::vector<ValueType> &dst) const;
/**
* @brief Copies the data to a C++ STL vector, which always resides in
* the CPU. This provides a seamless interface to copy from any memory
* space to a C++ STL vector, including the case where source memory space
* is HOST (i.e., it resides on the CPU).
* This is a more granular version of the above copyToSTL function as it
* provides transfer from a specific portion of the MemoryStorage
* to a specific portion of the destination STL vector.
*
* @param[in] dst reference to the destination C++ STL vector to which
* the data needs to be copied.
* @note If the size of the dst vector is less than the the size of
* the underlying memory storage, it will be resized. Thus, for
* performance reasons it is recommened to should be allocated
* appropriately.
* @param[in] N number of entries of the source MemoryStorage
* that needs to be copied to the destination pointer
* @param[in] srcOffset offset relative to the start of the source
* MemoryStorage from which we need to copy data
* @param[in] dstOffset offset relative to the start of the STL vector
* to which we need to copy data
* @param[out] dst reference to the destination C++ STL vector with
* the data copied into it
* @throw utils::LengthError exception if the size of the MemoryStorage is
* less than N + srcOffset
* @note If the size of the dst vector is less N + srcOffset, it will be resized.
* Thus, for performance reasons, it is recommened that the dst STL
* vector be allocated appropriately.
*/
void
copyTo(std::vector<ValueType> &dst,
const std::size_t N,
const std::size_t srcOffset,
const std::size_t dstOffset) const;
/**
* @brief Copies data from a C++ STL vector to the MemoryStorage object,
* which always resides on a CPU. This provides a seamless interface to
* copy from any memory space, including the case where the same memory
* spaces is HOST(i.e., the MemoryStorage is on CPU).
*
* @param[in] src const reference to the source C++ STL vector from which
* the data needs to be copied.
*
* @throw utils::LengthError exception if the size of the MemoryStorage is
* less than the size of the src
*/
void
copyFrom(const std::vector<ValueType> &src);
/**
* @brief Copies data from a C++ STL vector to the MemoryStorage object,
* which always resides on a CPU. This provides a seamless interface to
* copy from any memory space, including the case where the same memory
* spaces is HOST(i.e., the MemoryStorage is on CPU). This is a more
* granular version of the above copyFromSTL function as it provides
* transfer from a specific portion of the source STL vector to to a
* specific portion of the destination MemoryStorage.
*
* @param[in] src const reference to the source C++ STL vector from which
* the data needs to be copied.
* @param[in] N number of entries of the source pointer
* that needs to be copied to the destination MemoryStorage
* @param[in] srcOffset offset relative to the start of the source STL
* vector from which we need to copy data
* @param[in] dstOffset offset relative to the start of the destination
* MemoryStorage to which we need to copy data
* @throw utils::LengthError exception if the size of src is less than
* N + srcOffset
* @throw utils::LengthError exception if the size of the MemoryStorage
* is less thant N + dstOffset
*
*/
void
copyFrom(const std::vector<ValueType> &src,
const std::size_t N,
const std::size_t srcOffset,
const std::size_t dstOffset);
private:
ValueType * d_data = nullptr;
std::size_t d_size = 0;
};
//
// helper functions
//
/**
* @brief Create a MemoryStorage object from an input C++ STL vector
* @param[in] src Input C++ STL vector from which the MemoryStorage
* object is to be created
* @return A MemoryStorage object containing the data in the input C++
* STL vector
* @tparam ValueType Datatype of the underlying data in MemoryStorage
* as well as C++ STL vector (e.g., int, double, float, complex<double>,
* etc)
* @tparam memorySpaceDst MemorySpace (e.g. HOST, DEVICE, HOST_PINNED, etc)
* where the output MemoryStorage object should reside
*/
template <typename ValueType, utils::MemorySpace memorySpaceDst>
MemoryStorage<ValueType, memorySpaceDst>
memoryStorageFromSTL(const std::vector<ValueType> &src);
} // namespace utils
} // end of namespace dftfe
#include "MemoryStorage.t.cc"
#endif