Uses of Class
uk.ac.manchester.spinnaker.machine.Chip
Package | Description |
---|---|
uk.ac.manchester.spinnaker.connections |
Classes used to model types of connections that talk to SpiNNaker.
|
uk.ac.manchester.spinnaker.machine |
Describes a SpiNNaker machine.
|
-
Uses of Chip in uk.ac.manchester.spinnaker.connections
Methods in uk.ac.manchester.spinnaker.connections with parameters of type Chip Modifier and Type Method Description boolean
MostDirectConnectionSelector. hasDirectConnectionFor(Chip ethernetChip)
Tests if this connection selector will be able to make a direct connection to the given ethernet chip. -
Uses of Chip in uk.ac.manchester.spinnaker.machine
Methods in uk.ac.manchester.spinnaker.machine that return Chip Modifier and Type Method Description Chip
Machine. bootChip()
The coordinates of the chip used to boot the machine.Chip
Machine. getChipAt(int x, int y)
Get the chip at a specific (x, y) location.Chip
Machine. getChipAt(ChipLocation location)
Get the chip at a specific (x, y) location.Chip
Machine. getChipAt(HasChipLocation location)
Get the chip at a specific (x, y) location.Chip
Machine. getChipOverLink(HasChipLocation source, Direction direction)
Get the existing chip over the given link.Methods in uk.ac.manchester.spinnaker.machine that return types with arguments of type Chip Modifier and Type Method Description Collection<Chip>
Machine. chips()
Get the chips in the machine.SortedMap<ChipLocation,Chip>
Machine. chipsMap()
An unmodifiable view over the map from locations to chips.List<Chip>
Machine. ethernetConnectedChips()
The chips in the machine that have control over an Ethernet connection.Iterator<Chip>
Machine. iterator()
Get an iterator over the chips in this machine.MappableIterable<Chip>
Machine. iterChipsOnBoard(Chip chip)
The chips on the same board as the given chip.Methods in uk.ac.manchester.spinnaker.machine with parameters of type Chip Modifier and Type Method Description void
Machine. addChip(Chip chip)
Add a chip to the machine.String
Chip. difference(Chip other)
Describes one difference found between this chip and another chip.MappableIterable<Chip>
Machine. iterChipsOnBoard(Chip chip)
The chips on the same board as the given chip.Method parameters in uk.ac.manchester.spinnaker.machine with type arguments of type Chip Modifier and Type Method Description void
Machine. addChips(Iterable<Chip> chips)
Add some chips to the machine.Constructor parameters in uk.ac.manchester.spinnaker.machine with type arguments of type Chip Constructor Description Machine(MachineDimensions machineDimensions, Iterable<Chip> chips, HasChipLocation boot)
Creates a machine starting with the supplied chips.