CoreNEURON
mech_mapping.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 <cstring>
10 #include <cstdlib>
11 #include <iostream>
12 #include <map>
13 
17 
18 namespace coreneuron {
19 using Offset = size_t;
20 using MechId = int;
21 using VariableName = const char*;
22 
23 struct cmp_str {
24  bool operator()(char const* a, char const* b) const {
25  return std::strcmp(a, b) < 0;
26  }
27 };
28 
29 /*
30  * Structure that map variable names of mechanisms to their value's location (offset) in memory
31  */
32 using MechNamesMapping = std::map<MechId, std::map<VariableName, Offset, cmp_str>>;
34 
35 static void set_an_offset(int mech_id, const char* variable_name, int offset) {
36  mechNamesMapping[mech_id][variable_name] = offset;
37 }
38 
39 double* get_var_location_from_var_name(int mech_id,
40  const char* variable_name,
41  Memb_list* ml,
42  int node_index) {
43  if (mechNamesMapping.find(mech_id) == mechNamesMapping.end()) {
44  std::cerr << "ERROR : no variable name mapping exist for mechanism id: " << mech_id
45  << std::endl;
46  abort();
47  }
48  if (mechNamesMapping.at(mech_id).find(variable_name) == mechNamesMapping.at(mech_id).end()) {
49  std::cerr << "ERROR : no value associtated to variable name: " << variable_name
50  << std::endl;
51  abort();
52  }
53  int variable_rank = mechNamesMapping.at(mech_id).at(variable_name);
54  int ix = get_data_index(node_index, variable_rank, mech_id, ml);
55  return &(ml->data[ix]);
56 }
57 
58 void register_all_variables_offsets(int mech_id, SerializedNames variable_names) {
59  int idx = 0;
60  int nb_parsed_variables = 0;
61  int current_categorie = 1;
62  while (current_categorie < NB_MECH_VAR_CATEGORIES) {
63  if (variable_names[idx]) {
64  set_an_offset(mech_id, variable_names[idx], nb_parsed_variables);
65  nb_parsed_variables++;
66  } else {
67  current_categorie++;
68  }
69  idx++;
70  }
71  idx++;
72 }
73 
74 } // namespace coreneuron
NB_MECH_VAR_CATEGORIES
#define NB_MECH_VAR_CATEGORIES
Definition: mech_mapping.hpp:15
mechanism.hpp
coreneuron::cmp_str::operator()
bool operator()(char const *a, char const *b) const
Definition: mech_mapping.cpp:24
coreneuron::register_all_variables_offsets
void register_all_variables_offsets(int mech_id, SerializedNames variable_names)
Definition: mech_mapping.cpp:58
coreneuron::cmp_str
Definition: mech_mapping.cpp:23
coreneuron::MechNamesMapping
std::map< MechId, std::map< VariableName, Offset, cmp_str > > MechNamesMapping
Definition: mech_mapping.cpp:32
coreneuron::get_var_location_from_var_name
double * get_var_location_from_var_name(int mech_id, const char *variable_name, Memb_list *ml, int node_index)
Definition: mech_mapping.cpp:39
coreneuron::Memb_list
Definition: mechanism.hpp:131
coreneuron::MechId
int MechId
Definition: mech_mapping.cpp:20
coreneuron::set_an_offset
static void set_an_offset(int mech_id, const char *variable_name, int offset)
Definition: mech_mapping.cpp:35
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
mech_mapping.hpp
coreneuron::get_data_index
int get_data_index(int node_index, int variable_index, int mtype, Memb_list *ml)
Definition: data_layout.cpp:19
coreneuron::Offset
size_t Offset
Definition: mech_mapping.cpp:19
coreneuron::VariableName
const char * VariableName
Definition: mech_mapping.cpp:21
coreneuron::SerializedNames
const char ** SerializedNames
Definition: mech_mapping.hpp:31
data_layout.hpp
coreneuron::Memb_list::data
double * data
Definition: mechanism.hpp:139
coreneuron::mechNamesMapping
static MechNamesMapping mechNamesMapping
Definition: mech_mapping.cpp:33