CARLsim  6.1.0
CARLsim: a GPU-accelerated SNN simulator
spike_monitor.h
Go to the documentation of this file.
1 /* * Copyright (c) 2016 Regents of the University of California. All rights reserved.
2 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions
5 * are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 *
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * 3. The names of its contributors may not be used to endorse or promote
15 * products derived from this software without specific prior written
16 * permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * *********************************************************************************************** *
31 * CARLsim
32 * created by: (MDR) Micah Richert, (JN) Jayram M. Nageswaran
33 * maintained by:
34 * (MA) Mike Avery <averym@uci.edu>
35 * (MB) Michael Beyeler <mbeyeler@uci.edu>,
36 * (KDC) Kristofor Carlson <kdcarlso@uci.edu>
37 * (TSC) Ting-Shuo Chou <tingshuc@uci.edu>
38 * (HK) Hirak J Kashyap <kashyaph@uci.edu>
39 *
40 * CARLsim v1.0: JM, MDR
41 * CARLsim v2.0/v2.1/v2.2: JM, MDR, MA, MB, KDC
42 * CARLsim3: MB, KDC, TSC
43 * CARLsim4: TSC, HK
44 * CARLsim5: HK, JX, KC
45 * CARLsim6: LN, JX, KC, KW
46 *
47 * CARLsim available from http://socsci.uci.edu/~jkrichma/CARLsim/
48 * Ver 12/31/2016
49 */
50 
51 // paradigm shift: run this on spikes.
52 
53 #ifndef _SPIKE_MON_H_
54 #define _SPIKE_MON_H_
55 
56 #include "carlsim_api.h"
57 
58 #include <carlsim_datastructures.h> // SpikeMonMode
59 #include <vector> // std::vector
60 
61 class SNN; // forward declaration of SNN class
62 class SpikeMonitorCore; // forward declaration of implementation
63 
124  public:
131  SpikeMonitor(SpikeMonitorCore* spikeMonitorCorePtr);
132 
139  ~SpikeMonitor();
140 
141 
142  // +++++ PUBLIC METHODS: +++++++++++++++++++++++++++++++++++++++++++++++//
143 
153  void clear();
154 
166  std::vector<float> getAllFiringRates();
167 
179  std::vector<float> getAllFiringRatesSorted();
180 
190  float getMaxFiringRate();
191 
201  float getMinFiringRate();
202 
215  float getNeuronMeanFiringRate(int neurId);
216 
229  int getNeuronNumSpikes(int neurId);
230 
240  int getNumNeuronsWithFiringRate(float min, float max);
241 
251  int getNumSilentNeurons();
252 
265  float getPercentNeuronsWithFiringRate(float min, float max);
266 
276  float getPercentSilentNeurons();
277 
289  float getPopMeanFiringRate();
290 
302  float getPopStdFiringRate();
303 
315  int getPopNumSpikes();
316 
329  std::vector<std::vector<int> > getSpikeVector2D();
330 
337  bool isRecording();
338 
345  void print(bool printSpikeTimes=true);
346 
360  void startRecording();
361 
375  void stopRecording();
376 
387  long int getRecordingTotalTime();
388 
396  long int getRecordingLastStartTime();
397 
405  long int getRecordingStartTime();
406 
413  long int getRecordingStopTime();
414 
423  bool getPersistentData();
424 
434  void setPersistentData(bool persistentData);
435 
446  SpikeMonMode getMode();
447 
458  void setMode(SpikeMonMode mode=AER);
459 
476  void setLogFile(const std::string& logFileName);
477 
478  private:
480  SpikeMonitorCore* spikeMonitorCorePtr_;
481 
482 };
483 
484 #endif
SpikeMonMode
SpikeMonitor mode.
#define CARLSIM_API
Definition: carlsim_api.h:14
Class SpikeMonitor.
mode in which spike information is collected in AER format
Contains all of CARLsim&#39;s core functionality.
Definition: snn.h:138