CoreNEURON
memory.h File Reference
#include <cstdint>
#include <cstring>
#include <memory>
#include "coreneuron/utils/nrn_assert.h"
#include "coreneuron/nrniv/nrniv_decl.h"
#include <cstdlib>

Go to the source code of this file.

Classes

struct  coreneuron::unified_allocator< T >
 C++ allocator that uses [de]allocate_unified. More...
 
struct  coreneuron::alloc_deleter< Alloc >
 Allocator-aware deleter for use with std::unique_ptr. More...
 
class  MemoryManaged
 for gpu builds with unified memory support More...
 

Namespaces

 coreneuron
 THIS FILE IS AUTO GENERATED DONT MODIFY IT.
 

Macros

#define NRN_SOA_BYTE_ALIGN   (8 * sizeof(double))
 

Functions

bool coreneuron::gpu_enabled ()
 Check if GPU support is enabled. More...
 
void * coreneuron::allocate_unified (std::size_t num_bytes)
 Allocate unified memory in GPU builds iff GPU enabled, otherwise new. More...
 
void coreneuron::deallocate_unified (void *ptr, std::size_t num_bytes)
 Deallocate memory allocated by allocate_unified. More...
 
template<typename T , typename U >
bool coreneuron::operator== (unified_allocator< T > const &, unified_allocator< U > const &) noexcept
 
template<typename T , typename U >
bool coreneuron::operator!= (unified_allocator< T > const &x, unified_allocator< U > const &y) noexcept
 
template<typename T , typename Alloc , typename... Args>
auto coreneuron::allocate_unique (const Alloc &alloc, Args &&... args)
 
void alloc_memory (void *&pointer, size_t num_bytes, size_t alignment)
 
void calloc_memory (void *&pointer, size_t num_bytes, size_t alignment)
 
void free_memory (void *pointer)
 

Macro Definition Documentation

◆ NRN_SOA_BYTE_ALIGN

#define NRN_SOA_BYTE_ALIGN   (8 * sizeof(double))

Definition at line 21 of file memory.h.

Function Documentation

◆ alloc_memory()

void alloc_memory ( void *&  pointer,
size_t  num_bytes,
size_t  alignment 
)
inline

Definition at line 178 of file memory.h.

◆ calloc_memory()

void calloc_memory ( void *&  pointer,
size_t  num_bytes,
size_t  alignment 
)
inline

Definition at line 191 of file memory.h.

◆ free_memory()

void free_memory ( void *  pointer)
inline

Definition at line 196 of file memory.h.