CoreNEURON
enginemech.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 /**
10  * \file
11  * \brief Provides interface function for CoreNEURON mechanism library and NEURON
12  *
13  * libcorenrnmech is a interface library provided to building standalone executable
14  * special-core. Also, it is used by NEURON to run CoreNEURON via dlopen to execute
15  * models via in-memory transfer.
16  */
17 
18 #include <cstdlib>
19 #include <coreneuron/engine.h>
20 
21 namespace coreneuron {
22 
23 /** Mechanism registration function
24  *
25  * If external mechanisms present then use modl_reg function generated
26  * in mod_func.cpp otherwise use empty one.
27  */
28 #ifdef ADDITIONAL_MECHS
29 extern void modl_reg();
30 #else
31 void modl_reg() {}
32 #endif
33 
34 /// variables defined in coreneuron library
35 extern bool nrn_have_gaps;
36 extern bool nrn_use_fast_imem;
37 
38 /// function defined in coreneuron library
39 extern void nrn_cleanup_ion_map();
40 } // namespace coreneuron
41 
42 /** Initialize mechanisms and run simulation using CoreNEURON
43  *
44  * This is mainly used to build nrniv-core executable
45  */
46 int solve_core(int argc, char** argv) {
47  mk_mech_init(argc, argv);
49  int ret = run_solve_core(argc, argv);
51  return ret;
52 }
53 
54 extern "C" {
55 
56 /// global variables from coreneuron library
57 extern bool corenrn_embedded;
58 extern int corenrn_embedded_nthread;
59 
60 /// parse arguments from neuron and prepare new one for coreneuron
61 char* prepare_args(int& argc, char**& argv, int use_mpi, const char* mpi_lib, const char* nrn_arg);
62 
63 /// initialize standard mechanisms from coreneuron
64 void mk_mech_init(int argc, char** argv);
65 
66 /// set openmp threads equal to neuron's pthread
67 void set_openmp_threads(int nthread);
68 
69 /** Run CoreNEURON in embedded mode with NEURON
70  *
71  * @param nthread Number of Pthreads on NEURON side
72  * @param have_gaps True if gap junctions are used
73  * @param use_mpi True if MPI is used on NEURON side
74  * @param use_fast_imem True if fast imembrance calculation enabled
75  * @param nrn_arg Command line arguments passed by NEURON
76  * @return 1 if embedded mode is used otherwise 0
77  * \todo Change return type semantics
78  */
79 int corenrn_embedded_run(int nthread,
80  int have_gaps,
81  int use_mpi,
82  int use_fast_imem,
83  const char* mpi_lib,
84  const char* nrn_arg) {
85  // set coreneuron's internal variable based on neuron arguments
86  corenrn_embedded = true;
87  corenrn_embedded_nthread = nthread;
88  coreneuron::nrn_have_gaps = have_gaps != 0;
89  coreneuron::nrn_use_fast_imem = use_fast_imem != 0;
90 
91  // set number of openmp threads
92  set_openmp_threads(nthread);
93 
94  // pre-process argumnets from neuron and prepare new for coreneuron
95  int argc;
96  char** argv;
97  char* new_arg = prepare_args(argc, argv, use_mpi, mpi_lib, nrn_arg);
98 
99  // initialize internal arguments
100  mk_mech_init(argc, argv);
101 
102  // initialize extra arguments built into special-core
103  static bool modl_reg_called = false;
104  if (!modl_reg_called) {
106  modl_reg_called = true;
107  }
108  // run simulation
109  run_solve_core(argc, argv);
110 
111  // free temporary string created from prepare_args
112  free(new_arg);
113 
114  // delete array for argv
115  delete[] argv;
116 
117  return corenrn_embedded ? 1 : 0;
118 }
119 }
corenrn_embedded_run
int corenrn_embedded_run(int nthread, int have_gaps, int use_mpi, int use_fast_imem, const char *mpi_lib, const char *nrn_arg)
Run CoreNEURON in embedded mode with NEURON.
Definition: enginemech.cpp:79
coreneuron::modl_reg
void modl_reg()
Mechanism registration function.
Definition: enginemech.cpp:31
coreneuron::nrn_use_fast_imem
bool nrn_use_fast_imem
Definition: fast_imem.cpp:19
mk_mech_init
void mk_mech_init(int argc, char **argv)
initialize standard mechanisms from coreneuron
Definition: main1.cpp:466
coreneuron::nrn_cleanup_ion_map
void nrn_cleanup_ion_map()
Cleanup global ion map created during mechanism registration.
Definition: nrn_setup.cpp:696
solve_core
int solve_core(int argc, char **argv)
Initialize mechanisms and run simulation using CoreNEURON.
Definition: enginemech.cpp:46
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
set_openmp_threads
void set_openmp_threads(int nthread)
set openmp threads equal to neuron's pthread
Definition: main1.cpp:69
prepare_args
char * prepare_args(int &argc, char **&argv, int use_mpi, const char *mpi_lib, const char *nrn_arg)
parse arguments from neuron and prepare new one for coreneuron
Definition: main1.cpp:81
corenrn_embedded
bool corenrn_embedded
global variables from coreneuron library
Definition: nrn_setup.cpp:46
run_solve_core
int run_solve_core(int argc, char **argv)
Definition: main1.cpp:520
corenrn_embedded_nthread
int corenrn_embedded_nthread
Definition: nrn_setup.cpp:47
coreneuron::nrn_have_gaps
bool nrn_have_gaps
variables defined in coreneuron library
Definition: partrans.cpp:21