![]() |
NEURON
|
#include <fstream>
#include <sstream>
#include <vector>
#include <set>
#include <cstdlib>
#include <inttypes.h>
#include "partrans.h"
Go to the source code of this file.
Classes | |
struct | core2nrn_callback_t |
struct | NrnCoreTransferEvents |
Typedefs | |
typedef void *(* | CNB) (...) |
typedef struct core2nrn_callback_t | core2nrn_callback_t |
typedef std::vector< std::pair< int, bool > > | Core2NrnWatchInfoItem |
typedef std::vector< Core2NrnWatchInfoItem > | Core2NrnWatchInfo |
Enumerations | |
enum | mech_type { voltage = -1 , i_membrane_ = -2 } |
Functions | |
void | write_memb_mech_types_direct (std::ostream &s) |
void | part2_clean () |
int | get_global_int_item (const char *name) |
void * | get_global_dbl_item (void *p, const char *&name, int &size, double *&val) |
void | nrnthread_group_ids (int *groupids) |
int | nrnthread_dat1 (int tid, int &n_presyn, int &n_netcon, std::vector< int > &output_gid, int *&netcon_srcgid, std::vector< int > &netcon_negsrcgid_tid) |
int | nrnthread_dat2_1 (int tid, int &n_real_cell, int &ngid, int &n_real_gid, int &nnode, int &ndiam, int &nmech, int *&tml_index, int *&ml_nodecount, int &nidata, int &nvdata, int &nweight) |
int | nrnthread_dat2_2 (int tid, int *&v_parent_index, double *&a, double *&b, double *&area, double *&v, double *&diamvec) |
int | nrnthread_dat2_mech (int tid, size_t i, int dsz_inst, int *&nodeindices, double *&data, int *&pdata, std::vector< uint32_t > &nmodlrandom, std::vector< int > &pointer2type) |
int | nrnthread_dat2_3 (int tid, int nweight, int *&output_vindex, double *&output_threshold, int *&netcon_pnttype, int *&netcon_pntindex, double *&weights, double *&delays) |
int | nrnthread_dat2_corepointer (int tid, int &n) |
int | nrnthread_dat2_corepointer_mech (int tid, int type, int &icnt, int &dcnt, int *&iarray, double *&darray) |
int | nrnthread_dat2_vecplay (int tid, std::vector< int > &n) |
int | nrnthread_dat2_vecplay_inst (int tid, int i, int &vptype, int &mtype, int &ix, int &sz, double *&yvec, double *&tvec, int &last_index, int &discon_index, int &ubound_index) |
void | nrnthread_dat3_cell_count (int &cell_count) |
void | nrnthread_dat3_cellmapping (int i, int &gid, int &nsec, int &nseg, int &n_seclist) |
void | nrnthread_dat3_secmapping (int i_c, int i_sec, std::string &sclname, int &nsec, int &nseg, size_t &total_lfp_factors, int &n_electrodes, std::vector< int > &data_sec, std::vector< int > &data_seg, std::vector< double > &data_lfp) |
int * | datum2int (int type, Memb_list *ml, NrnThread &nt, CellGroup &cg, DatumIndices &di, int ml_vdata_offset, std::vector< int > &pointer2type) |
void | nrnthread_get_trajectory_requests (int tid, int &bsize, int &ntrajec, void **&vpr, int *&types, int *&indices, double **&pvars, double **&varrays) |
void | nrnthread_trajectory_values (int tid, int n_pr, void **vpr, double t) |
void | nrnthread_trajectory_return (int tid, int n_pr, int bsize, int vecsz, void **vpr, double t) |
int | nrnthread_all_spike_vectors_return (std::vector< double > &spiketvec, std::vector< int > &spikegidvec) |
NEURON callback used from CORENEURON to transfer all spike vectors after simulation. More... | |
void | nrnthreads_all_weights_return (std::vector< double * > &weights) |
Copy weights from all coreneuron::NrnThread to NetCon instances. More... | |
size_t | nrnthreads_type_return (int type, int tid, double *&data, std::vector< double * > &mdata) |
Return location for CoreNEURON to copy data into. More... | |
int | core2nrn_corepointer_mech (int tid, int type, int icnt, int dcnt, int *iarray, double *darray) |
int | core2nrn_nmodlrandom (int tid, int type, const std::vector< int > &indices, const std::vector< double > &nmodlrandom) |
void | core2nrn_clear_queues (double t) |
Initialize queues before transfer Probably aleady clear, but if binq then must be initialized to time. More... | |
void | core2nrn_NetCon_event (int tid, double td, size_t nc_index) |
Called from CoreNEURON core2nrn_tqueue_item. More... | |
void | core2nrn_SelfEvent_event (int tid, double td, int tar_type, int tar_index, double flag, size_t nc_index, int is_movable) |
void | core2nrn_SelfEvent_event_noweight (int tid, double td, int tar_type, int tar_index, double flag, int is_movable) |
void | core2nrn_PreSyn_flag (int tid, std::set< int > presyns_flag_true) |
void | nrn_watch_clear () |
Watch info corenrn->nrn transfer requires all activated WatchCondition be deactivated prior to mirroring the activation that exists on the corenrn side. More... | |
NrnCoreTransferEvents * | nrn2core_transfer_tqueue (int tid) |
void | nrn2core_transfer_WATCH (void(*cb)(int, int, int, int, int)) |
void | core2nrn_watch_activate (int tid, int type, int wbegin, Core2NrnWatchInfo &) |
void | core2nrn_vecplay (int tid, int i_nrn, int last_index, int discon_index, int ubound_index) |
getting one item at a time from CoreNEURON More... | |
void | core2nrn_vecplay_events () |
start the vecplay events More... | |
void | nrn2core_PreSyn_flag (int tid, std::set< int > &presyns_flag_true) |
void | nrn2core_patternstim (void **info) |
void | nrn2core_subworld_info (int &cnt, int &subworld_index, int &subworld_rank, int &subworld_size, int &numprocs_world) |
void | map_coreneuron_callbacks (void *handle) |
Populate function pointers by mapping function pointers for callback. More... | |
Variables | |
static core2nrn_callback_t | cnbs [] |
typedef void*(* CNB) (...) |
Definition at line 13 of file nrncore_callbacks.h.
typedef struct core2nrn_callback_t core2nrn_callback_t |
typedef std::vector<Core2NrnWatchInfoItem> Core2NrnWatchInfo |
Definition at line 182 of file nrncore_callbacks.h.
typedef std::vector<std::pair<int, bool> > Core2NrnWatchInfoItem |
Definition at line 181 of file nrncore_callbacks.h.
enum mech_type |
Enumerator | |
---|---|
voltage | |
i_membrane_ |
Definition at line 22 of file nrncore_callbacks.h.
void core2nrn_clear_queues | ( | double | t | ) |
Initialize queues before transfer Probably aleady clear, but if binq then must be initialized to time.
Definition at line 1124 of file nrncore_callbacks.cpp.
int core2nrn_corepointer_mech | ( | int | tid, |
int | type, | ||
int | icnt, | ||
int | dcnt, | ||
int * | iarray, | ||
double * | darray | ||
) |
Definition at line 581 of file nrncore_callbacks.cpp.
void core2nrn_NetCon_event | ( | int | tid, |
double | td, | ||
size_t | nc_index | ||
) |
Called from CoreNEURON core2nrn_tqueue_item.
Definition at line 1131 of file nrncore_callbacks.cpp.
int core2nrn_nmodlrandom | ( | int | tid, |
int | type, | ||
const std::vector< int > & | indices, | ||
const std::vector< double > & | nmodlrandom | ||
) |
Definition at line 606 of file nrncore_callbacks.cpp.
void core2nrn_PreSyn_flag | ( | int | tid, |
std::set< int > | presyns_flag_true | ||
) |
Definition at line 1212 of file nrncore_callbacks.cpp.
void core2nrn_SelfEvent_event | ( | int | tid, |
double | td, | ||
int | tar_type, | ||
int | tar_index, | ||
double | flag, | ||
size_t | nc_index, | ||
int | is_movable | ||
) |
Definition at line 1179 of file nrncore_callbacks.cpp.
void core2nrn_SelfEvent_event_noweight | ( | int | tid, |
double | td, | ||
int | tar_type, | ||
int | tar_index, | ||
double | flag, | ||
int | is_movable | ||
) |
Definition at line 1200 of file nrncore_callbacks.cpp.
void core2nrn_vecplay | ( | int | tid, |
int | i_nrn, | ||
int | last_index, | ||
int | discon_index, | ||
int | ubound_index | ||
) |
getting one item at a time from CoreNEURON
Definition at line 817 of file nrncore_callbacks.cpp.
void core2nrn_vecplay_events | ( | ) |
start the vecplay events
Definition at line 830 of file nrncore_callbacks.cpp.
void core2nrn_watch_activate | ( | int | tid, |
int | type, | ||
int | wbegin, | ||
Core2NrnWatchInfo & | wi | ||
) |
Definition at line 1272 of file nrncore_callbacks.cpp.
int* datum2int | ( | int | type, |
Memb_list * | ml, | ||
NrnThread & | nt, | ||
CellGroup & | cg, | ||
DatumIndices & | di, | ||
int | ml_vdata_offset, | ||
std::vector< int > & | pointer2type | ||
) |
Definition at line 636 of file nrncore_callbacks.cpp.
void* get_global_dbl_item | ( | void * | p, |
const char *& | name, | ||
int & | size, | ||
double *& | val | ||
) |
Definition at line 93 of file nrncore_callbacks.cpp.
int get_global_int_item | ( | const char * | name | ) |
Definition at line 82 of file nrncore_callbacks.cpp.
void map_coreneuron_callbacks | ( | void * | handle | ) |
Populate function pointers by mapping function pointers for callback.
Definition at line 36 of file nrncore_callbacks.cpp.
void nrn2core_patternstim | ( | void ** | info | ) |
Definition at line 1307 of file nrncore_callbacks.cpp.
void nrn2core_PreSyn_flag | ( | int | tid, |
std::set< int > & | presyns_flag_true | ||
) |
Definition at line 1249 of file nrncore_callbacks.cpp.
void nrn2core_subworld_info | ( | int & | cnt, |
int & | subworld_index, | ||
int & | subworld_rank, | ||
int & | subworld_size, | ||
int & | numprocs_world | ||
) |
Definition at line 1324 of file nrncore_callbacks.cpp.
NrnCoreTransferEvents* nrn2core_transfer_tqueue | ( | int | tid | ) |
Definition at line 1034 of file nrncore_callbacks.cpp.
void nrn2core_transfer_WATCH | ( | void(*)(int, int, int, int, int) | cb | ) |
Definition at line 5945 of file netcvode.cpp.
void nrn_watch_clear | ( | ) |
Watch info corenrn->nrn transfer requires all activated WatchCondition be deactivated prior to mirroring the activation that exists on the corenrn side.
Definition at line 2456 of file netcvode.cpp.
int nrnthread_all_spike_vectors_return | ( | std::vector< double > & | spiketvec, |
std::vector< int > & | spikegidvec | ||
) |
NEURON callback used from CORENEURON to transfer all spike vectors after simulation.
spiketvec | - vector of spikes |
spikegidvec | - vector of gids |
out.dat
; 0 otherwise Definition at line 1320 of file netpar.cpp.
int nrnthread_dat1 | ( | int | tid, |
int & | n_presyn, | ||
int & | n_netcon, | ||
std::vector< int > & | output_gid, | ||
int *& | netcon_srcgid, | ||
std::vector< int > & | netcon_negsrcgid_tid | ||
) |
Definition at line 215 of file nrncore_callbacks.cpp.
int nrnthread_dat2_1 | ( | int | tid, |
int & | n_real_cell, | ||
int & | ngid, | ||
int & | n_real_gid, | ||
int & | nnode, | ||
int & | ndiam, | ||
int & | nmech, | ||
int *& | tml_index, | ||
int *& | ml_nodecount, | ||
int & | nidata, | ||
int & | nvdata, | ||
int & | nweight | ||
) |
Definition at line 269 of file nrncore_callbacks.cpp.
int nrnthread_dat2_2 | ( | int | tid, |
int *& | v_parent_index, | ||
double *& | a, | ||
double *& | b, | ||
double *& | area, | ||
double *& | v, | ||
double *& | diamvec | ||
) |
Definition at line 325 of file nrncore_callbacks.cpp.
int nrnthread_dat2_3 | ( | int | tid, |
int | nweight, | ||
int *& | output_vindex, | ||
double *& | output_threshold, | ||
int *& | netcon_pnttype, | ||
int *& | netcon_pntindex, | ||
double *& | weights, | ||
double *& | delays | ||
) |
Definition at line 475 of file nrncore_callbacks.cpp.
int nrnthread_dat2_corepointer | ( | int | tid, |
int & | n | ||
) |
Definition at line 523 of file nrncore_callbacks.cpp.
int nrnthread_dat2_corepointer_mech | ( | int | tid, |
int | type, | ||
int & | icnt, | ||
int & | dcnt, | ||
int *& | iarray, | ||
double *& | darray | ||
) |
Definition at line 539 of file nrncore_callbacks.cpp.
int nrnthread_dat2_mech | ( | int | tid, |
size_t | i, | ||
int | dsz_inst, | ||
int *& | nodeindices, | ||
double *& | data, | ||
int *& | pdata, | ||
std::vector< uint32_t > & | nmodlrandom, | ||
std::vector< int > & | pointer2type | ||
) |
Definition at line 375 of file nrncore_callbacks.cpp.
int nrnthread_dat2_vecplay | ( | int | tid, |
std::vector< int > & | n | ||
) |
Definition at line 734 of file nrncore_callbacks.cpp.
int nrnthread_dat2_vecplay_inst | ( | int | tid, |
int | i, | ||
int & | vptype, | ||
int & | mtype, | ||
int & | ix, | ||
int & | sz, | ||
double *& | yvec, | ||
double *& | tvec, | ||
int & | last_index, | ||
int & | discon_index, | ||
int & | ubound_index | ||
) |
Definition at line 763 of file nrncore_callbacks.cpp.
void nrnthread_dat3_cell_count | ( | int & | cell_count | ) |
Definition at line 234 of file nrncore_callbacks.cpp.
void nrnthread_dat3_cellmapping | ( | int | i, |
int & | gid, | ||
int & | nsec, | ||
int & | nseg, | ||
int & | n_seclist | ||
) |
Definition at line 238 of file nrncore_callbacks.cpp.
void nrnthread_dat3_secmapping | ( | int | i_c, |
int | i_sec, | ||
std::string & | sclname, | ||
int & | nsec, | ||
int & | nseg, | ||
size_t & | total_lfp_factors, | ||
int & | n_electrodes, | ||
std::vector< int > & | data_sec, | ||
std::vector< int > & | data_seg, | ||
std::vector< double > & | data_lfp | ||
) |
Definition at line 246 of file nrncore_callbacks.cpp.
void nrnthread_get_trajectory_requests | ( | int | tid, |
int & | bsize, | ||
int & | ntrajec, | ||
void **& | vpr, | ||
int *& | types, | ||
int *& | indices, | ||
double **& | pvars, | ||
double **& | varrays | ||
) |
void nrnthread_group_ids | ( | int * | groupids | ) |
Definition at line 208 of file nrncore_callbacks.cpp.
void nrnthread_trajectory_return | ( | int | tid, |
int | n_pr, | ||
int | bsize, | ||
int | vecsz, | ||
void ** | vpr, | ||
double | t | ||
) |
Definition at line 5881 of file netcvode.cpp.
void nrnthread_trajectory_values | ( | int | tid, |
int | n_pr, | ||
void ** | vpr, | ||
double | t | ||
) |
Definition at line 5839 of file netcvode.cpp.
void nrnthreads_all_weights_return | ( | std::vector< double * > & | weights | ) |
Copy weights from all coreneuron::NrnThread to NetCon instances.
This depends on the CoreNEURON weight order for each thread to be the same as was originally sent from NEURON. See how that order was constructed in CellGroup::mk_cgs_netcon_info.
Definition at line 131 of file nrncore_callbacks.cpp.
size_t nrnthreads_type_return | ( | int | type, |
int | tid, | ||
double *& | data, | ||
std::vector< double * > & | mdata | ||
) |
Return location for CoreNEURON to copy data into.
The type is mechanism type or special negative type for voltage, i_membrane_, or time. See coreneuron/io/nrn_setup.cpp:legacy_index2pointer. We allow coreneuron to copy to NEURON's AoS data as CoreNEURON knows how its data is arranged (SoA and possibly permuted). This function figures out the size (just for sanity check) and data pointer to be returned based on type and thread id. The ARTIFICIAL_CELL type case is special as there is no thread specific Memb_list for those.
Definition at line 159 of file nrncore_callbacks.cpp.
void part2_clean | ( | ) |
Definition at line 700 of file nrncore_callbacks.cpp.
void write_memb_mech_types_direct | ( | std::ostream & | s | ) |
Definition at line 51 of file nrncore_callbacks.cpp.
|
static |
Definition at line 213 of file nrncore_callbacks.h.