Class ChipDetails

java.lang.Object
uk.ac.manchester.spinnaker.machine.bean.ChipDetails

public class ChipDetails
extends Object
The details of a Chip.
Author:
Christian-B
  • Field Details

    • cores

      @PositiveOrZero @Max(18L) public final @javax.validation.constraints.PositiveOrZero,@javax.validation.constraints.Max(18L) int cores
      Total number of working core on this chip.
    • ethernet

      @Valid public final @Valid ChipLocation ethernet
      Location of the nearest Ethernet-enabled chip.
  • Constructor Details

    • ChipDetails

      public ChipDetails​(int cores, ChipLocation ethernet, String ipAddress, List<LinkBean> links, List<Integer> deadLinks) throws UnknownHostException
      Make an instance.
      Parameters:
      cores - Total number of cores working cores including monitors.
      ipAddress - the IP address to set
      ethernet - Location of the nearest Ethernet-enabled chip.
      links - Description of link information (only present when the links are not a complete default set).
      deadLinks - the dead links of the chip
      Throws:
      UnknownHostException - If the ipAddress can not be converted to an InetAddress
  • Method Details