CoreNEURON
mem_layout_util.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 */
8 
9 #include "mem_layout_util.hpp"
10 
11 namespace coreneuron {
12 
13 /// calculate size after padding for specific memory layout
14 // Warning: this function is declared extern in nrniv_decl.h
15 int nrn_soa_padded_size(int cnt, int layout) {
16  return soa_padded_size<NRN_SOA_PAD>(cnt, layout);
17 }
18 
19 /// return the new offset considering the byte aligment settings
20 size_t nrn_soa_byte_align(size_t size) {
21  static_assert(NRN_SOA_BYTE_ALIGN % sizeof(double) == 0,
22  "NRN_SOA_BYTE_ALIGN should be a multiple of sizeof(double)");
23  constexpr size_t dbl_align{NRN_SOA_BYTE_ALIGN / sizeof(double)};
24  size_t remainder{size % dbl_align};
25  if (remainder) {
26  size += dbl_align - remainder;
27  }
28  nrn_assert((size * sizeof(double)) % NRN_SOA_BYTE_ALIGN == 0);
29  return size;
30 }
31 
32 int nrn_i_layout(int icnt, int cnt, int isz, int sz, int layout) {
33  switch (layout) {
34  case Layout::AoS:
35  return icnt * sz + isz;
36  case Layout::SoA:
37  int padded_cnt = nrn_soa_padded_size(cnt,
38  layout); // may want to factor out to save time
39  return icnt + isz * padded_cnt;
40  }
41 
42  nrn_assert(false);
43  return 0;
44 }
45 
46 // file data is AoS. ie.
47 // organized as cnt array instances of mtype each of size sz.
48 // So input index i refers to i_instance*sz + i_item offset
49 // Return the corresponding SoA index -- taking into account the
50 // alignment requirements. Ie. i_instance + i_item*align_cnt.
51 
52 int nrn_param_layout(int i, int mtype, Memb_list* ml) {
53  int layout = corenrn.get_mech_data_layout()[mtype];
54  switch (layout) {
55  case Layout::AoS:
56  return i;
57  case Layout::SoA:
58  nrn_assert(layout == Layout::SoA);
59  int sz = corenrn.get_prop_param_size()[mtype];
60  return nrn_i_layout(i / sz, ml->nodecount, i % sz, sz, layout);
61  }
62  nrn_assert(false);
63  return 0;
64 }
65 } // namespace coreneuron
coreneuron::CoreNeuron::get_mech_data_layout
auto & get_mech_data_layout()
Definition: coreneuron.hpp:174
coreneuron::nrn_soa_byte_align
size_t nrn_soa_byte_align(size_t size)
return the new offset considering the byte aligment settings
Definition: mem_layout_util.cpp:20
mem_layout_util.hpp
coreneuron::Memb_list
Definition: mechanism.hpp:131
coreneuron::nrn_soa_padded_size
int nrn_soa_padded_size(int cnt, int layout)
calculate size after padding for specific memory layout
Definition: mem_layout_util.cpp:15
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::i
int i
Definition: cellorder.cpp:485
coreneuron::nrn_param_layout
int nrn_param_layout(int i, int mtype, Memb_list *ml)
Definition: mem_layout_util.cpp:52
cnt
#define cnt
Definition: tqueue.hpp:44
coreneuron::AoS
@ AoS
Definition: nrniv_decl.h:69
coreneuron::corenrn
CoreNeuron corenrn
Definition: multicore.cpp:53
coreneuron::nrn_i_layout
int nrn_i_layout(int icnt, int cnt, int isz, int sz, int layout)
This function return the index in a flat array of a matrix coordinate (icnt, isz).
Definition: mem_layout_util.cpp:32
coreneuron::Memb_list::nodecount
int nodecount
Definition: mechanism.hpp:144
NRN_SOA_BYTE_ALIGN
#define NRN_SOA_BYTE_ALIGN
Definition: memory.h:21
coreneuron::CoreNeuron::get_prop_param_size
auto & get_prop_param_size()
Definition: coreneuron.hpp:166
nrn_assert
#define nrn_assert(x)
assert()-like macro, independent of NDEBUG status
Definition: nrn_assert.h:33
coreneuron::SoA
@ SoA
Definition: nrniv_decl.h:69