Source code for spynnaker.pyNN.models.spike_source.spike_source_array

# Copyright (c) 2017-2019 The University of Manchester
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from spinn_utilities.overrides import overrides
from spynnaker.pyNN.models.abstract_pynn_model import AbstractPyNNModel
from .spike_source_array_vertex import SpikeSourceArrayVertex


[docs]class SpikeSourceArray(AbstractPyNNModel): default_population_parameters = {} def __init__(self, spike_times=None): if spike_times is None: spike_times = [] self.__spike_times = spike_times
[docs] @overrides(AbstractPyNNModel.create_vertex) def create_vertex( self, n_neurons, label, constraints): max_atoms = self.get_max_atoms_per_core() return SpikeSourceArrayVertex( n_neurons, self.__spike_times, constraints, label, max_atoms, self)
@property def _spike_times(self): return self.__spike_times