CARLsim  4.1.0
CARLsim: a GPU-accelerated SNN simulator
spike_buffer.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 *
45 * CARLsim available from http://socsci.uci.edu/~jkrichma/CARLsim/
46 * Ver 12/31/2016
47 */
48 
49 #ifndef _SPIKE_BUFFER_H_
50 #define _SPIKE_BUFFER_H_
51 
52 
53 #include <stdlib.h> // size_t
54 
55 
65 class SpikeBuffer {
66 public:
76  SpikeBuffer(int minDelay, int maxDelay);
77 
83  ~SpikeBuffer();
84 
85 
86  // +++++ PUBLIC DATA STRUCTURES +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //
87 
89  struct SpikeNode {
90  int neurId;
91  int grpId;
92  unsigned short int delay;
94  };
95 
97  class SpikeIterator {
98  public:
99  SpikeIterator() : _node(NULL) {}
100  SpikeIterator(SpikeNode* n) : _node(n) {}
101 
103  return _node;
104  }
105 
106  int operator*() {
107  return _node->neurId;
108  }
109 
110  bool operator==(const SpikeIterator& other) {
111  return (_node == other._node);
112  }
113 
114  bool operator!=(const SpikeIterator& other) {
115  return (_node != other._node);
116  }
117 
119  _node = _node->next;
120  return this;
121  }
122 
123  private:
124  SpikeNode* _node;
125  };
126 
127 
135  void schedule(int neurId, int grpId, unsigned short int delay);
136 
138  void step();
139 
147  void reset(int minDelay, int maxDelay);
148 
150  size_t length();
151 
153  SpikeIterator front(int stepOffset=0);
154 
156  SpikeIterator back();
157 
158 
159 private:
160  // This class provides a pImpl for the CARLsim User API.
161  // \see https://marcmutz.wordpress.com/translated-articles/pimp-my-pimpl/
162  class Impl;
163  Impl* _impl;
164 };
165 
166 
167 #endif
SpikeBuffer::step
void step()
advance to next time step
Definition: spike_buffer.cpp:220
SpikeBuffer::SpikeNode::neurId
int neurId
corresponding global neuron Id
Definition: spike_buffer.h:90
SpikeBuffer::SpikeIterator::operator!=
bool operator!=(const SpikeIterator &other)
Definition: spike_buffer.h:114
SpikeBuffer::SpikeIterator::operator++
SpikeIterator * operator++()
Definition: spike_buffer.h:118
SpikeBuffer::SpikeIterator::SpikeIterator
SpikeIterator(SpikeNode *n)
Definition: spike_buffer.h:100
SpikeBuffer::~SpikeBuffer
~SpikeBuffer()
SpikeBuffer Destructor.
Definition: spike_buffer.cpp:216
SpikeBuffer::schedule
void schedule(int neurId, int grpId, unsigned short int delay)
Schedule a spike.
Definition: spike_buffer.cpp:219
SpikeBuffer::length
size_t length()
retrieve actual length of the buffer
Definition: spike_buffer.cpp:222
SpikeBuffer::SpikeIterator::operator==
bool operator==(const SpikeIterator &other)
Definition: spike_buffer.h:110
SpikeBuffer::SpikeNode::delay
unsigned short int delay
scheduling delay (in number of time steps)
Definition: spike_buffer.h:92
SpikeBuffer::SpikeNode::next
SpikeNode * next
pointer to the next element in the list
Definition: spike_buffer.h:93
SpikeBuffer::SpikeIterator::operator*
int operator*()
Definition: spike_buffer.h:106
SpikeBuffer::back
SpikeIterator back()
pointer to the back of the spike buffer
Definition: spike_buffer.cpp:224
SpikeBuffer::SpikeNode
linked list to hold the corresponding neuron Id and delivery delay for each spike
Definition: spike_buffer.h:89
SpikeBuffer::SpikeIterator::SpikeIterator
SpikeIterator()
Definition: spike_buffer.h:99
SpikeBuffer::SpikeIterator::operator->
SpikeNode * operator->()
Definition: spike_buffer.h:102
SpikeBuffer
Circular buffer for delivering spikes.
Definition: spike_buffer.h:65
SpikeBuffer::SpikeNode::grpId
int grpId
corresponding global group Id
Definition: spike_buffer.h:91
SpikeBuffer::front
SpikeIterator front(int stepOffset=0)
pointer to the front of the spike buffer
Definition: spike_buffer.cpp:223
SpikeBuffer::SpikeBuffer
SpikeBuffer(int minDelay, int maxDelay)
SpikeBuffer Constructor.
Definition: spike_buffer.cpp:214
SpikeBuffer::reset
void reset(int minDelay, int maxDelay)
Reset buffer data.
Definition: spike_buffer.cpp:221
SpikeBuffer::SpikeIterator
Iterator to loop over the scheduled spikes at a certain delay.
Definition: spike_buffer.h:97