CARLsim  4.1.0
CARLsim: a GPU-accelerated SNN simulator
callback_core.cpp
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 *
45 * CARLsim available from http://socsci.uci.edu/~jkrichma/CARLsim/
46 * Ver 12/31/2016
47 */
48 #include <stdio.h>
49 #include <callback_core.h>
50 #include <callback.h>
51 
55 
57  carlsim = c;
58  sGen = s;
59 }
60 
61 int SpikeGeneratorCore::nextSpikeTime(SNN* s, int grpId, int i, int currentTime, int lastScheduledSpikeTime, int endOfTimeSlice) {
62  if (sGen != NULL)
63  return sGen->nextSpikeTime(carlsim, grpId, i, currentTime, lastScheduledSpikeTime, endOfTimeSlice);
64  else
65  return 0xFFFFFFFF;
66 }
67 
69  carlsim = c;
70  cGen = cg;
71 }
72 
73 void ConnectionGeneratorCore::connect(SNN* s, int srcGrpId, int i, int destGrpId, int j, float& weight, float& maxWt,
74  float& delay, bool& connected) {
75  if (cGen != NULL)
76  cGen->connect(carlsim, srcGrpId, i, destGrpId, j, weight, maxWt, delay, connected);
77 }
SpikeGeneratorCore::nextSpikeTime
virtual int nextSpikeTime(SNN *s, int grpId, int i, int currentTime, int lastScheduledSpikeTime, int endOfTimeSlice)
controls spike generation using a callback mechanism
Definition: callback_core.cpp:61
ConnectionGenerator::connect
virtual void connect(CARLsim *s, int srcGrpId, int i, int destGrpId, int j, float &weight, float &maxWt, float &delay, bool &connected)=0
specifies which synaptic connections (per group, per neuron, per synapse) should be made
ConnectionGenerator
Definition: callback.h:90
callback_core.h
callback.h
ConnectionGeneratorCore::ConnectionGeneratorCore
ConnectionGeneratorCore(CARLsim *c, ConnectionGenerator *cg)
Definition: callback_core.cpp:68
ConnectionGeneratorCore::connect
virtual void connect(SNN *s, int srcGrpId, int i, int destGrpId, int j, float &weight, float &maxWt, float &delay, bool &connected)
specifies which synaptic connections (per group, per neuron, per synapse) should be made
Definition: callback_core.cpp:73
SpikeGeneratorCore::SpikeGeneratorCore
SpikeGeneratorCore(CARLsim *c, SpikeGenerator *s)
Definition: callback_core.cpp:56
SpikeGenerator::nextSpikeTime
virtual int nextSpikeTime(CARLsim *s, int grpId, int i, int currentTime, int lastScheduledSpikeTime, int endOfTimeSlice)=0
controls spike generation using a callback mechanism
CARLsim
CARLsim User Interface This class provides a user interface to the public sections of CARLsimCore sou...
Definition: carlsim.h:137
SpikeGenerator
Definition: callback.h:63
SNN
Contains all of CARLsim's core functionality.
Definition: snn.h:114