CARLsim  3.1.3
CARLsim: a GPU-accelerated SNN simulator
SpikeGenerator Class Referenceabstract

#include <callback.h>

Inheritance diagram for SpikeGenerator:
InteractiveSpikeGenerator PeriodicSpikeGenerator PrePostGroupSpikeGenerator SpikeGeneratorFromFile SpikeGeneratorFromVector

Public Member Functions

virtual ~SpikeGenerator ()
 
virtual unsigned int nextSpikeTime (CARLsim *s, int grpId, int i, unsigned int currentTime, unsigned int lastScheduledSpikeTime, unsigned int endOfTimeSlice)=0
 controls spike generation using a callback mechanism More...
 

Detailed Description

Spike generation can be performed using spike generators. Spike generators are dummy-neurons that have their spikes specified externally either defined by a Poisson firing rate or via a spike injection mechanism. Spike generators can have post-synaptic connections with STDP and STP, but unlike Izhikevich neurons, they do not receive any pre-synaptic input. For more information on spike generators see Section Neuron groups: Spike generators in the Tutorial.

For fine-grained control over spike generation, individual spike times can be specified per neuron in each group. This is accomplished using a callback mechanism, which is called at each time step, to specify whether a neuron has fired or not.

Definition at line 56 of file callback.h.

Constructor & Destructor Documentation

virtual ~SpikeGenerator ( )
inlinevirtual

Definition at line 59 of file callback.h.

Member Function Documentation

virtual unsigned int nextSpikeTime ( CARLsim s,
int  grpId,
int  i,
unsigned int  currentTime,
unsigned int  lastScheduledSpikeTime,
unsigned int  endOfTimeSlice 
)
pure virtual
Attention
The virtual method should never be called directly
Parameters
spointer to the simulator object
grpIdthe group id
ithe neuron index in the group
currentTimethe current simluation time
lastScheduledSpikeTimethe last spike time which was scheduled
endOfTimeSlicethe end of the current scheduling time slice. Spike times after this will not be scheduled.

Implemented in SpikeGeneratorFromFile, SpikeGeneratorFromVector, PeriodicSpikeGenerator, InteractiveSpikeGenerator, and PrePostGroupSpikeGenerator.


The documentation for this class was generated from the following file: