18 #if !defined(NRN_SOA_BYTE_ALIGN)
21 #define NRN_SOA_BYTE_ALIGN (8 * sizeof(double))
61 template <
typename T,
typename U>
66 template <
typename T,
typename U>
79 template <
typename Alloc>
85 using pointer =
typename std::allocator_traits<Alloc>::pointer;
89 std::allocator_traits<Alloc>::destroy(aa, std::addressof(*p));
90 std::allocator_traits<Alloc>::deallocate(aa, p, 1);
97 template <
typename T,
typename Alloc,
typename... Args>
99 using AT = std::allocator_traits<Alloc>;
100 static_assert(std::is_same<
typename AT::value_type, std::remove_cv_t<T>>{}(),
101 "Allocator has the wrong value_type");
104 auto p = AT::allocate(a, 1);
106 AT::construct(a, std::addressof(*p), std::forward<Args>(args)...);
108 return std::unique_ptr<T, D>(p, D(a));
110 AT::deallocate(a, p, 1);
117 #ifdef CORENEURON_UNIFIED_MEMORY
119 #include <cuda_runtime_api.h>
122 inline void alloc_memory(
void*& pointer,
size_t num_bytes,
size_t ) {
123 cudaMallocManaged(&pointer, num_bytes);
126 inline void calloc_memory(
void*& pointer,
size_t num_bytes,
size_t ) {
128 cudaMemset(pointer, 0, num_bytes);
144 void*
operator new(
size_t len) {
146 cudaMallocManaged(&ptr, len);
147 cudaDeviceSynchronize();
151 void*
operator new[](
size_t len) {
153 cudaMallocManaged(&ptr, len);
154 cudaDeviceSynchronize();
158 void operator delete(
void* ptr) {
159 cudaDeviceSynchronize();
163 void operator delete[](
void* ptr) {
164 cudaDeviceSynchronize();
178 inline void alloc_memory(
void*& pointer,
size_t num_bytes,
size_t alignment) {
181 if (num_bytes % alignment != 0) {
182 size_t multiple = num_bytes / alignment;
183 fill = alignment * (multiple + 1) - num_bytes;
185 nrn_assert((pointer = std::aligned_alloc(alignment, num_bytes + fill)) !=
nullptr);
187 nrn_assert((pointer = std::malloc(num_bytes)) !=
nullptr);
191 inline void calloc_memory(
void*& pointer,
size_t num_bytes,
size_t alignment) {
193 memset(pointer, 0, num_bytes);
208 inline int soa_padded_size(
int cnt,
int layout) {
209 int imod =
cnt % chunk;
213 int idiv =
cnt / chunk;
214 return (idiv + 1) * chunk;
221 inline bool is_aligned(
void* pointer, std::size_t alignment) {
222 return (
reinterpret_cast<std::uintptr_t
>(pointer) % alignment) == 0;
235 if (alignment != 0) {
258 if (alignment != 0) {