spinn_machine.link_data_objects package¶
Module contents¶
- class spinn_machine.link_data_objects.AbstractLinkData(connected_chip_x: int, connected_chip_y: int, connected_link: int, board_address: str)¶
Bases:
objectData object for SpiNNaker links.
- Parameters:
connected_chip_x – The X coordinate of the chip on the board that the link is connected to.
connected_chip_y – The Y coordinate of the chip on the board that the link is connected to.
connected_link – The ID of the link on the source chip that this is data about.
board_address – The IP address of the board that this link data is about.
- property connected_chip_x: int¶
The X coordinate of the chip on the board that the link is connected to.
- class spinn_machine.link_data_objects.FPGALinkData(fpga_link_id: int, fpga_id: int, connected_chip_x: int, connected_chip_y: int, connected_link: int, board_address: str)¶
Bases:
AbstractLinkDataData object for FPGA links.
- Parameters:
fpga_link_id – The ID of the link out of the SpiNNaker FPGA.
fpga_id – The ID of the SpiNNaker FPGA.
connected_chip_x – The X coordinate of the chip on the board that the link is connected to.
connected_chip_y – The Y coordinate of the chip on the board that the link is connected to.
connected_link – The ID of the link on the source chip that this is data about.
board_address – The IP address of the board that this link data is about.
- class spinn_machine.link_data_objects.SpinnakerLinkData(spinnaker_link_id: int, connected_chip_x: int, connected_chip_y: int, connected_link: int, board_address: str)¶
Bases:
AbstractLinkDataData object for SpiNNaker links.
- Parameters:
spinnaker_link_id – The ID of the SpiNNaker link.
connected_chip_x – The X coordinate of the chip on the board that the link is connected to.
connected_chip_y – The Y coordinate of the chip on the board that the link is connected to.
connected_link – The ID of the link on the source chip that this is data about.
board_address – The IP address of the board that this link data is about.