CoreNEURON
report_event.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 #include "report_event.hpp"
13 #ifdef ENABLE_BIN_REPORTS
14 #include "reportinglib/Records.h"
15 #endif // ENABLE_BIN_REPORTS
16 #ifdef ENABLE_SONATA_REPORTS
17 #include "bbp/sonata/reports.h"
18 #endif // ENABLE_SONATA_REPORTS
19 
20 namespace coreneuron {
21 
22 #if defined(ENABLE_BIN_REPORTS) || defined(ENABLE_SONATA_REPORTS)
23 ReportEvent::ReportEvent(double dt,
24  double tstart,
25  const VarsToReport& filtered_gids,
26  const char* name,
27  double report_dt)
28  : dt(dt)
29  , tstart(tstart)
30  , report_path(name)
31  , report_dt(report_dt)
32  , vars_to_report(filtered_gids) {
33  nrn_assert(filtered_gids.size());
34  step = tstart / dt;
35  reporting_period = static_cast<int>(report_dt / dt);
36  gids_to_report.reserve(filtered_gids.size());
37  for (const auto& gid: filtered_gids) {
38  gids_to_report.push_back(gid.first);
39  }
40  std::sort(gids_to_report.begin(), gids_to_report.end());
41 }
42 
43 void ReportEvent::summation_alu(NrnThread* nt) {
44  // Sum currents only on reporting steps
45  if (step > 0 && (static_cast<int>(step) % reporting_period) == 0) {
46  auto& summation_report = nt->summation_report_handler_->summation_reports_[report_path];
47  // Add currents of all variables in each segment
48  double sum = 0.0;
49  for (const auto& kv: summation_report.currents_) {
50  int segment_id = kv.first;
51  for (const auto& value: kv.second) {
52  double current_value = *value.first;
53  int scale = value.second;
54  sum += current_value * scale;
55  }
56  summation_report.summation_[segment_id] = sum;
57  sum = 0.0;
58  }
59  // Add all currents in the soma
60  // Only when type summation and soma target
61  if (!summation_report.gid_segments_.empty()) {
62  double sum_soma = 0.0;
63  for (const auto& kv: summation_report.gid_segments_) {
64  int gid = kv.first;
65  for (const auto& segment_id: kv.second) {
66  sum_soma += summation_report.summation_[segment_id];
67  }
68  *(vars_to_report[gid].front().var_value) = sum_soma;
69  sum_soma = 0.0;
70  }
71  }
72  }
73 }
74 
75 /** on deliver, call ReportingLib and setup next event */
76 void ReportEvent::deliver(double t, NetCvode* nc, NrnThread* nt) {
77 /* reportinglib is not thread safe */
78 #pragma omp critical
79  {
80  summation_alu(nt);
81  // each thread needs to know its own step
82 #ifdef ENABLE_BIN_REPORTS
83  records_nrec(step, gids_to_report.size(), gids_to_report.data(), report_path.data());
84 #endif
85 #ifdef ENABLE_SONATA_REPORTS
86  sonata_record_node_data(step,
87  gids_to_report.size(),
88  gids_to_report.data(),
89  report_path.data());
90 #endif
91  send(t + dt, nc, nt);
92  step++;
93  }
94 }
95 
96 bool ReportEvent::require_checkpoint() {
97  return false;
98 }
99 #endif // defined(ENABLE_BIN_REPORTS) || defined(ENABLE_SONATA_REPORTS)
100 
101 } // Namespace coreneuron
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::t
double t
Definition: register_mech.cpp:22
coreneuron::dt
double dt
Definition: register_mech.cpp:22
report_event.hpp
nrnreport.hpp
multicore.hpp
nrn_assert
#define nrn_assert(x)
assert()-like macro, independent of NDEBUG status
Definition: nrn_assert.h:33
nrn_assert.h