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