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

# Copyright (c) 2022 The University of Manchester
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations

import sys
from typing import cast, TYPE_CHECKING
from spinn_utilities.overrides import overrides
from pacman.utilities.utility_calls import get_keys
from spinn_front_end_common.utility_models import (
    ReverseIPTagMulticastSourceMachineVertex)
from spynnaker.pyNN.data.spynnaker_data_view import SpynnakerDataView
if TYPE_CHECKING:
    from .spike_source_array_vertex import SpikeSourceArrayVertex


[docs] class SpikeSourceArrayMachineVertex(ReverseIPTagMulticastSourceMachineVertex): """ Extended to add colour. """ @property def _pop_vertex(self) -> SpikeSourceArrayVertex: return cast('SpikeSourceArrayVertex', self.app_vertex)
[docs] @overrides( ReverseIPTagMulticastSourceMachineVertex.get_n_keys_for_partition) def get_n_keys_for_partition(self, partition_id: str) -> int: n_keys = super().get_n_keys_for_partition(partition_id) n_colours = 2 ** self._pop_vertex.n_colour_bits return n_keys * n_colours
@overrides(ReverseIPTagMulticastSourceMachineVertex._fill_send_buffer_1d) def _fill_send_buffer_1d(self, key_base: int) -> None: first_time_step = SpynnakerDataView.get_first_machine_time_step() end_time_step = ( SpynnakerDataView.get_current_run_timesteps() or sys.maxsize) if first_time_step == end_time_step: return if self._send_buffer_times is None or self._send_buffer is None: return keys = get_keys( key_base, self.vertex_slice, self._pop_vertex.n_colour_bits) colour_mask = (2 ** self._pop_vertex.n_colour_bits) - 1 for tick in sorted(self._send_buffer_times): if first_time_step <= tick < end_time_step: self._send_buffer.add_keys( tick, keys + (tick & colour_mask)) @overrides(ReverseIPTagMulticastSourceMachineVertex._fill_send_buffer_2d) def _fill_send_buffer_2d(self, key_base: int) -> None: first_time_step = SpynnakerDataView.get_first_machine_time_step() end_time_step = ( SpynnakerDataView.get_current_run_timesteps() or sys.maxsize) if first_time_step == end_time_step: return if self._send_buffer_times is None or self._send_buffer is None: return keys = get_keys( key_base, self.vertex_slice, self._pop_vertex.n_colour_bits) colour_mask = (2 ** self._pop_vertex.n_colour_bits) - 1 for atom in range(self.vertex_slice.n_atoms): for tick in sorted(self._send_buffer_times[atom]): if first_time_step <= tick < end_time_step: self._send_buffer.add_key( tick, keys[atom] + (tick & colour_mask))