Uses of Class
uk.ac.manchester.spinnaker.messages.model.CPUState
Package | Description |
---|---|
uk.ac.manchester.spinnaker.messages.model |
Model support classes for the communication messages.
|
uk.ac.manchester.spinnaker.messages.scp |
The messages of SpiNNaker Control Protocol (SCP).
|
uk.ac.manchester.spinnaker.transceiver |
How to actually talk to a SpiNNaker machine.
|
-
Uses of CPUState in uk.ac.manchester.spinnaker.messages.model
Fields in uk.ac.manchester.spinnaker.messages.model with type parameters of type CPUState Modifier and Type Field Description List<CPUState>
ChipSummaryInfo. coreStates
The state of the cores on the chip (list of one per core).Methods in uk.ac.manchester.spinnaker.messages.model that return CPUState Modifier and Type Method Description static CPUState
CPUState. get(int value)
Get the element for a value.CPUState
CPUInfo. getState()
static CPUState
CPUState. valueOf(String name)
Returns the enum constant of this type with the specified name.static CPUState[]
CPUState. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of CPUState in uk.ac.manchester.spinnaker.messages.scp
Constructors in uk.ac.manchester.spinnaker.messages.scp with parameters of type CPUState Constructor Description CountState(AppID appID, CPUState state)
-
Uses of CPUState in uk.ac.manchester.spinnaker.transceiver
Fields in uk.ac.manchester.spinnaker.transceiver with type parameters of type CPUState Modifier and Type Field Description static EnumSet<CPUState>
TransceiverInterface. DEFAULT_ERROR_STATES
The set of states that indicate a core in a failure state.Methods in uk.ac.manchester.spinnaker.transceiver with parameters of type CPUState Modifier and Type Method Description default CoreSubsets
TransceiverInterface. getCoresInState(@Valid CoreSubsets allCoreSubsets, @NotNull CPUState state)
Get all cores that are in a given state.default Map<CoreLocation,CPUInfo>
TransceiverInterface. getCoresNotInState(@Valid CoreSubsets allCoreSubsets, @NotNull CPUState state)
Get all cores that are not in a given state.int
Transceiver. getCoreStateCount(AppID appID, CPUState state)
int
TransceiverInterface. getCoreStateCount(@NotNull AppID appID, @NotNull CPUState state)
Get a count of the number of cores which have a given state.Method parameters in uk.ac.manchester.spinnaker.transceiver with type arguments of type CPUState Modifier and Type Method Description default CoreSubsets
TransceiverInterface. getCoresInState(@Valid CoreSubsets allCoreSubsets, EnumSet<@NotNull CPUState> states)
Get all cores that are in a given set of states.default Map<CoreLocation,CPUInfo>
TransceiverInterface. getCoresNotInState(@Valid CoreSubsets allCoreSubsets, EnumSet<@NotNull CPUState> states)
Get all cores that are not in a given set of states.void
Transceiver. waitForCoresToBeInState(CoreSubsets allCoreSubsets, AppID appID, EnumSet<CPUState> cpuStates, Integer timeout, int timeBetweenPolls, EnumSet<CPUState> errorStates, int countBetweenFullChecks)
default void
TransceiverInterface. waitForCoresToBeInState(@Valid CoreSubsets coreSubsets, @NotNull AppID appID, EnumSet<@NotNull CPUState> cpuStates)
Waits for the specified cores running the given application to be in some target state or states.void
TransceiverInterface. waitForCoresToBeInState(@Valid CoreSubsets allCoreSubsets, @NotNull AppID appID, EnumSet<@NotNull CPUState> cpuStates, @PositiveOrZero Integer timeout, @javax.validation.constraints.Positive int timeBetweenPolls, EnumSet<@NotNull CPUState> errorStates, @javax.validation.constraints.Positive int countsBetweenFullCheck)
Waits for the specified cores running the given application to be in some target state or states.