CoreNEURON
fast_imem.hpp
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 #pragma once
10 
12 
13 namespace coreneuron {
14 
15 /* Bool global variable to define if the fast_imem
16  * calculations should be enabled.
17  */
18 extern bool nrn_use_fast_imem;
19 
20 /* Free memory allocated for the fast current membrane calculation.
21  * Found in src/nrnoc/multicore.c in NEURON.
22  */
23 void fast_imem_free();
24 
25 /* fast_imem_alloc() wrapper.
26  * Found in src/nrnoc/multicore.c in NEURON.
27  */
28 void nrn_fast_imem_alloc();
29 
30 /* Calculate the new values of rhs array at every timestep.
31  * Found in src/nrnoc/fadvance.cpp in NEURON.
32  */
33 
34 void nrn_calc_fast_imem(NrnThread* _nt);
35 /* Initialization used only in offline (file) mode.
36  * See NEURON nrn_calc_fast_imem_fixedstep_init in src/nrnoc/fadvance.cpp
37  */
38 void nrn_calc_fast_imem_init(NrnThread* _nt);
39 
40 } // namespace coreneuron
coreneuron::nrn_calc_fast_imem
void nrn_calc_fast_imem(NrnThread *nt)
Definition: fast_imem.cpp:44
coreneuron::nrn_use_fast_imem
bool nrn_use_fast_imem
Definition: fast_imem.cpp:19
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::nrn_calc_fast_imem_init
void nrn_calc_fast_imem_init(NrnThread *nt)
Definition: fast_imem.cpp:62
coreneuron::nrn_fast_imem_alloc
void nrn_fast_imem_alloc()
Definition: fast_imem.cpp:32
multicore.hpp
coreneuron::fast_imem_free
void fast_imem_free()
Definition: fast_imem.cpp:21