Source code for spinn_machine.link_data_objects.spinnaker_link_data

# 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 .abstract_link_data import AbstractLinkData


[docs]class SpinnakerLinkData(AbstractLinkData): """ Data object for SpiNNaker links """ __slots__ = [ "_spinnaker_link_id"] # pylint: disable=too-many-arguments def __init__(self, spinnaker_link_id, connected_chip_x, connected_chip_y, connected_link, board_address): super(SpinnakerLinkData, self).__init__( connected_chip_x, connected_chip_y, connected_link, board_address) self._spinnaker_link_id = spinnaker_link_id @property def spinnaker_link_id(self): """ The ID of the SpiNNaker link. """ return self._spinnaker_link_id def __eq__(self, other): if not isinstance(other, SpinnakerLinkData): return False return (self._spinnaker_link_id == other.spinnaker_link_id and self.connected_chip_x == other.connected_chip_x and self.connected_chip_y == other.connected_chip_y and self.connected_link == other.connected_link and self.board_address == other.board_address) def __ne__(self, other): if not isinstance(other, SpinnakerLinkData): return True return not self.__eq__(other) def __hash__(self): return hash((self._spinnaker_link_id, self.connected_chip_x, self.connected_chip_y, self.connected_link, self.board_address))