CoreNEURON
memory.cpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================.
7 */
10 
11 #ifdef CORENEURON_ENABLE_GPU
12 #include <cuda_runtime_api.h>
13 #endif
14 
15 #include <cassert>
16 
17 namespace coreneuron {
18 bool gpu_enabled() {
19 #ifdef CORENEURON_ENABLE_GPU
20  return corenrn_param.gpu;
21 #else
22  return false;
23 #endif
24 }
25 
26 void* allocate_unified(std::size_t num_bytes) {
27 #ifdef CORENEURON_ENABLE_GPU
28  // The build supports GPU execution, check if --gpu was passed to actually
29  // enable it. We should not call CUDA APIs in GPU builds if --gpu was not passed.
30  if (corenrn_param.gpu) {
31  // Allocate managed/unified memory.
32  void* ptr{nullptr};
33  auto const code = cudaMallocManaged(&ptr, num_bytes);
34  assert(code == cudaSuccess);
35  return ptr;
36  }
37 #endif
38  // Either the build does not have GPU support or --gpu was not passed.
39  // Allocate using standard operator new.
40  // When we have C++17 support then propagate `alignment` here.
41  return ::operator new(num_bytes);
42 }
43 
44 void deallocate_unified(void* ptr, std::size_t num_bytes) {
45  // See comments in allocate_unified to understand the different branches.
46 #ifdef CORENEURON_ENABLE_GPU
47  if (corenrn_param.gpu) {
48  // Deallocate managed/unified memory.
49  auto const code = cudaFree(ptr);
50  assert(code == cudaSuccess);
51  return;
52  }
53 #endif
54 #ifdef __cpp_sized_deallocation
55  ::operator delete(ptr, num_bytes);
56 #else
57  ::operator delete(ptr);
58 #endif
59 }
60 } // namespace coreneuron
coreneuron::allocate_unified
void * allocate_unified(std::size_t num_bytes)
Allocate unified memory in GPU builds iff GPU enabled, otherwise new.
Definition: memory.cpp:26
coreneuron::corenrn_parameters_data::gpu
bool gpu
Enable pthread/openmp.
Definition: corenrn_parameters.hpp:63
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
corenrn_parameters.hpp
coreneuron::corenrn_param
corenrn_parameters corenrn_param
Printing method.
Definition: corenrn_parameters.cpp:268
coreneuron::gpu_enabled
bool gpu_enabled()
Check if GPU support is enabled.
Definition: memory.cpp:18
coreneuron::deallocate_unified
void deallocate_unified(void *ptr, std::size_t num_bytes)
Deallocate memory allocated by allocate_unified.
Definition: memory.cpp:44
memory.h