Source code for pacman.model.graphs.abstract_fpga_vertex

from abc import abstractproperty

from .abstract_virtual_vertex import AbstractVirtualVertex


# interface
[docs]class AbstractFPGAVertex(AbstractVirtualVertex): """ A vertex connected to an FPGA """ __slots__ = () @abstractproperty def fpga_link_id(self): """ The link of the FPGA to which the vertex is connected :rtype: int """ @abstractproperty def fpga_id(self): """ The id of the FPGA to which the vertex is connected :rtype: int """