CoreNEURON
nrnreport.cpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2022 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================
7 */
8 
9 #include <iostream>
10 #include <vector>
11 #include <algorithm>
12 #include <map>
13 #include <set>
14 #include <cmath>
15 
24 #ifdef ENABLE_BIN_REPORTS
25 #include "reportinglib/Records.h"
26 #endif
27 #ifdef ENABLE_SONATA_REPORTS
28 #include "bbp/sonata/reports.h"
29 #endif
30 
31 namespace coreneuron {
32 
33 // Size in MB of the report buffer
34 static int size_report_buffer = 4;
35 
36 void nrn_flush_reports(double t) {
37  // flush before buffer is full
38 #ifdef ENABLE_BIN_REPORTS
39  records_end_iteration(t);
40 #endif
41 #ifdef ENABLE_SONATA_REPORTS
42  sonata_check_and_flush(t);
43 #endif
44 }
45 
46 /** in the current implementation, we call flush during every spike exchange
47  * interval. Hence there should be sufficient buffer to hold all reports
48  * for the duration of mindelay interval. In the below call we specify the
49  * number of timesteps that we have to buffer.
50  * TODO: revisit this because spike exchange can happen few steps before/after
51  * mindelay interval and hence adding two extra timesteps to buffer.
52  */
53 void setup_report_engine(double dt_report, double mindelay) {
54  int min_steps_to_record = static_cast<int>(std::round(mindelay / dt_report));
55  static_cast<void>(min_steps_to_record);
56 #ifdef ENABLE_BIN_REPORTS
57  records_set_min_steps_to_record(min_steps_to_record);
58  records_setup_communicator();
59  records_finish_and_share();
60 #endif
61 #ifdef ENABLE_SONATA_REPORTS
62  sonata_set_min_steps_to_record(min_steps_to_record);
63  sonata_setup_communicators();
64  sonata_prepare_datasets();
65 #endif
66 }
67 
68 // Size in MB of the report buffers
71 #ifdef ENABLE_BIN_REPORTS
72  records_set_max_buffer_size_hint(size_report_buffer);
73 #endif
74 #ifdef ENABLE_SONATA_REPORTS
75  sonata_set_max_buffer_size_hint(size_report_buffer);
76 #endif
77 }
78 
80 #ifdef ENABLE_BIN_REPORTS
81  records_flush(nrn_threads[0]._t);
82 #endif
83 #ifdef ENABLE_SONATA_REPORTS
84  sonata_flush(nrn_threads[0]._t);
85 #endif
86 }
87 } // Namespace coreneuron
membfunc.hpp
netcvode.hpp
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::t
double t
Definition: register_mech.cpp:22
coreneuron::size_report_buffer
static int size_report_buffer
Definition: nrnreport.cpp:34
coreneuron::setup_report_engine
void setup_report_engine(double dt_report, double mindelay)
in the current implementation, we call flush during every spike exchange interval.
Definition: nrnreport.cpp:53
mech_mapping.hpp
nrnsection_mapping.hpp
coreneuron::set_report_buffer_size
void set_report_buffer_size(int n)
Definition: nrnreport.cpp:69
coreneuron::finalize_report
void finalize_report()
Definition: nrnreport.cpp:79
netcon.hpp
coreneuron::nrn_flush_reports
void nrn_flush_reports(double t)
Definition: nrnreport.cpp:36
coreneuron::nrn_threads
NrnThread * nrn_threads
Definition: multicore.cpp:56
nrnreport.hpp
multicore.hpp
nrn_assert.h