-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Callback from CoreNEURON to help transfer data to NEURON. (#717)
* Callback from CoreNEURON to help transfer data to NEURON. Help for the transfer of voltage, i_membrane_, and mechanism data. Strategy is to pass a pointer which is used by CoreNEURON to copy data which may have been reordered due to SoA and permutation. * After psolve uses nrn_core copy thread time to t. Add a more comprehensive data return test. * Handle artificial cells with multiple threads. Added artificial cell test. * Temporarily avoid non-deterministic segmentation fault from test. * CMAKE_CXX_STANDARD 11 allows greater clarity with "auto&". * Preserve CoreNEURON global and static data across invocations. * autotools STDCXX11 Co-authored-by: Alexandru Savulescu <[email protected]>
- Loading branch information
1 parent
19cb091
commit 03400bf
Showing
9 changed files
with
1,322 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule coreneuron
updated
13 files
+1 −0 | coreneuron/CMakeLists.txt | |
+3 −0 | coreneuron/apps/main1.cpp | |
+174 −0 | coreneuron/io/core2nrn_data_return.cpp | |
+40 −0 | coreneuron/io/core2nrn_data_return.hpp | |
+3 −0 | coreneuron/io/nrn2core_direct.h | |
+3 −18 | coreneuron/io/nrn_setup.cpp | |
+4 −10 | coreneuron/io/output_spikes.cpp | |
+0 −6 | coreneuron/io/phase1.cpp | |
+0 −4 | coreneuron/io/phase1.hpp | |
+5 −2 | coreneuron/mechanism/mech/enginemech.cpp | |
+20 −20 | coreneuron/network/netcon.hpp | |
+24 −149 | coreneuron/network/netpar.cpp | |
+26 −0 | coreneuron/utils/nrnmutdec.h |
Oops, something went wrong.