Source code for pacman.model.graphs.application.application_2d_fpga_vertex

# Copyright (c) 2017 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 typing import List, Optional, Tuple

from spinn_utilities.overrides import overrides

from pacman.model.graphs.application.abstract import Abstract2DDeviceVertex
from pacman.model.graphs.common import Slice

from .application_fpga_vertex import ApplicationFPGAVertex
from .fpga_connection import FPGAConnection


[docs] class Application2DFPGAVertex(ApplicationFPGAVertex, Abstract2DDeviceVertex): """ A device connected to an FPGA with input or output in two dimensions. """ __slots__ = ( "__width", "__height", "__sub_width", "__sub_height") def __init__( self, width: int, height: int, sub_width: int, sub_height: int, incoming_fpga_connections: Optional[List[FPGAConnection]] = None, outgoing_fpga_connection: Optional[FPGAConnection] = None, label: Optional[str] = None): """ :param width: The width of the vertex in atoms :param height: The height of the vertex in atoms :param sub_width: The width of the sub-rectangle to break the vertex up into :param sub_height: The height of the sub-rectangle to break the vertex up into :param incoming_fpga_connections: The connections from one or more FPGAs that that packets are expected to be received from for this device, or `None` if no incoming traffic is expected from the device :param outgoing_fpga_connection: The connection to an FPGA that packets to be sent to this device should be sent down, or `None` if no outgoing traffic is expected to be sent to the device. :param label: The optional name of the vertex. """ # Set variables first as this lets us call properties self.__width = width self.__height = height self.__sub_width = sub_width self.__sub_height = sub_height super().__init__( width * height, incoming_fpga_connections, outgoing_fpga_connection, label, n_machine_vertices_per_link=self._n_sub_rectangles) self._verify_sub_size() @property @overrides(Abstract2DDeviceVertex.width) def width(self) -> int: return self.__width @property @overrides(Abstract2DDeviceVertex.height) def height(self) -> int: return self.__height @property @overrides(Abstract2DDeviceVertex.sub_width) def sub_width(self) -> int: return self.__sub_width @property @overrides(Abstract2DDeviceVertex.sub_height) def sub_height(self) -> int: return self.__sub_height @property @overrides(ApplicationFPGAVertex.atoms_shape) def atoms_shape(self) -> Tuple[int, ...]: return (self.__width, self.__height)