CoreNEURON
nrn_stats.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 /**
10  * @file nrn_stats.cpp
11  * @date 25th Dec 2014
12  * @brief Function declarations for the cell statistics
13  *
14  */
15 
16 #include <algorithm>
17 #include <cstdio>
18 #include <climits>
19 #include <vector>
21 #include "coreneuron/mpi/nrnmpi.h"
27 namespace coreneuron {
28 const int NUM_STATS = 13;
29 
31  long stat_array[NUM_STATS] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
32 
33  for (int ith = 0; ith < nrn_nthread; ++ith) {
34  stat_array[0] += nrn_threads[ith].ncell; // number of cells
35  stat_array[10] += nrn_threads[ith].end; // number of compartments
36  stat_array[1] += nrn_threads[ith].n_presyn; // number of presyns
37  stat_array[2] += nrn_threads[ith].n_input_presyn; // number of input presyns
38  stat_array[3] += nrn_threads[ith].n_netcon; // number of netcons, synapses
39  stat_array[4] += nrn_threads[ith].n_pntproc; // number of point processes
41  size_t n = nrn_partrans::transfer_thread_data_[ith].tar_indices.size();
42  stat_array[11] += n; // number of transfer targets
44  stat_array[12] += n; // number of transfer sources
45  }
46  }
47  stat_array[5] = spikevec_gid.size(); // number of spikes
48 
49  stat_array[6] = std::count_if(spikevec_gid.cbegin(), spikevec_gid.cend(), [](const int& s) {
50  return s > -1;
51  }); // number of non-negative gid spikes
52 
53 #if NRNMPI
54  long gstat_array[NUM_STATS];
56  nrnmpi_long_allreduce_vec(stat_array, gstat_array, NUM_STATS, 1);
57  } else {
58  assert(sizeof(stat_array) == sizeof(gstat_array));
59  std::memcpy(gstat_array, stat_array, sizeof(stat_array));
60  }
61 #else
62  const long(&gstat_array)[NUM_STATS] = stat_array;
63 #endif
64 
65  if (nrnmpi_myid == 0) {
66  printf("\n\n Simulation Statistics\n");
67  printf(" Number of cells: %ld\n", gstat_array[0]);
68  printf(" Number of compartments: %ld\n", gstat_array[10]);
69  printf(" Number of presyns: %ld\n", gstat_array[1]);
70  printf(" Number of input presyns: %ld\n", gstat_array[2]);
71  printf(" Number of synapses: %ld\n", gstat_array[3]);
72  printf(" Number of point processes: %ld\n", gstat_array[4]);
73  printf(" Number of transfer sources: %ld\n", gstat_array[12]);
74  printf(" Number of transfer targets: %ld\n", gstat_array[11]);
75  printf(" Number of spikes: %ld\n", gstat_array[5]);
76  printf(" Number of spikes with non negative gid-s: %ld\n", gstat_array[6]);
77  }
78 }
79 } // namespace coreneuron
coreneuron::report_cell_stats
void report_cell_stats()
Reports global cell statistics of the simulation.
Definition: nrn_stats.cpp:30
coreneuron::nrn_nthread
int nrn_nthread
Definition: multicore.cpp:55
coreneuron::spikevec_gid
std::vector< int > spikevec_gid
Definition: output_spikes.cpp:46
output_spikes.hpp
netcvode.hpp
nrn_stats.h
Function declarations for the cell statistics.
coreneuron::NUM_STATS
const int NUM_STATS
Definition: nrn_stats.cpp:28
coreneuron::nrnmpi_long_allreduce_vec
mpi_function< cnrn_make_integral_constant_t(nrnmpi_long_allreduce_vec_impl)> nrnmpi_long_allreduce_vec
Definition: nrnmpidec.cpp:49
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::NrnThread::n_pntproc
int n_pntproc
Definition: multicore.hpp:90
corenrn_parameters.hpp
coreneuron::NrnThread::n_presyn
int n_presyn
Definition: multicore.hpp:94
partrans.hpp
coreneuron::corenrn_param
corenrn_parameters corenrn_param
Printing method.
Definition: corenrn_parameters.cpp:268
coreneuron::nrn_threads
NrnThread * nrn_threads
Definition: multicore.cpp:56
coreneuron::nrn_partrans::TransferThreadData::src_indices
std::vector< int > src_indices
Definition: partrans.hpp:79
coreneuron::nrn_partrans::TransferThreadData::tar_indices
std::vector< int > tar_indices
Definition: partrans.hpp:85
multicore.hpp
coreneuron::corenrn_parameters_data::mpi_enable
bool mpi_enable
Initialization seed for random number generator (int)
Definition: corenrn_parameters.hpp:59
coreneuron::NrnThread::n_netcon
int n_netcon
Definition: multicore.hpp:92
coreneuron::NrnThread::n_input_presyn
int n_input_presyn
Definition: multicore.hpp:93
coreneuron::nrnmpi_myid
int nrnmpi_myid
Definition: nrnmpi_def_cinc.cpp:11
coreneuron::NrnThread::end
int end
Definition: multicore.hpp:98
nrnmpi.h
coreneuron::NrnThread::ncell
int ncell
Definition: multicore.hpp:97
coreneuron::nrn_partrans::transfer_thread_data_
TransferThreadData * transfer_thread_data_
Definition: partrans.cpp:25