Uses of Class
uk.ac.manchester.spinnaker.machine.CoreLocation
Package | Description |
---|---|
uk.ac.manchester.spinnaker.alloc.db |
Database support for Spalloc server.
|
uk.ac.manchester.spinnaker.machine |
Describes a SpiNNaker machine.
|
uk.ac.manchester.spinnaker.machine.tags |
Describes IPtags and reverse IPtags.
|
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.messages.sdp |
Messages sent and received by SDP (the SpiNNaker Datagram Protocol).
|
uk.ac.manchester.spinnaker.storage |
Storage management.
|
uk.ac.manchester.spinnaker.storage.sqlite |
Storage management implementation that uses SQLite.
|
uk.ac.manchester.spinnaker.transceiver |
How to actually talk to a SpiNNaker machine.
|
-
Uses of CoreLocation in uk.ac.manchester.spinnaker.alloc.db
Methods in uk.ac.manchester.spinnaker.alloc.db that return CoreLocation Modifier and Type Method Description CoreLocation
Row. getCore(String x, String y, String p)
Get a core from a result set row.Methods in uk.ac.manchester.spinnaker.alloc.db that return types with arguments of type CoreLocation Modifier and Type Method Description static DatabaseAPI.RowMapper<CoreLocation>
Row. core(String x, String y, String p)
Create a function for extracting a core from a result set row. -
Uses of CoreLocation in uk.ac.manchester.spinnaker.machine
Methods in uk.ac.manchester.spinnaker.machine that return CoreLocation Modifier and Type Method Description CoreLocation
CoreLocation. asCoreLocation()
default CoreLocation
HasCoreLocation. asCoreLocation()
Converts (if required) this to a simple X, Y, P tuple.Methods in uk.ac.manchester.spinnaker.machine that return types with arguments of type CoreLocation Modifier and Type Method Description Collection<CoreLocation>
CoreSubsets. coreByChip(ChipLocation chip)
Provides theCoreLocation
s for just a single chip.Iterator<CoreLocation>
CoreSubsets. iterator()
Methods in uk.ac.manchester.spinnaker.machine with parameters of type CoreLocation Modifier and Type Method Description void
CoreSubsets. addCore(CoreLocation core)
Adds the core Location.int
CoreLocation. compareTo(CoreLocation other)
boolean
CoreSubsets. isCore(CoreLocation core)
Determine if there is a chip with coordinates (x, y) in the subset, which has a core with the given ID in the subset.Method parameters in uk.ac.manchester.spinnaker.machine with type arguments of type CoreLocation Modifier and Type Method Description void
CoreSubsets. addCores(Iterable<CoreLocation> locations)
Adds the locations into this one.Constructor parameters in uk.ac.manchester.spinnaker.machine with type arguments of type CoreLocation Constructor Description CoreSubsets(Iterable<CoreLocation> locations)
Constructor which adds the locations. -
Uses of CoreLocation in uk.ac.manchester.spinnaker.machine.tags
Methods in uk.ac.manchester.spinnaker.machine.tags that return CoreLocation Modifier and Type Method Description CoreLocation
ReverseIPTag. getDestination()
-
Uses of CoreLocation in uk.ac.manchester.spinnaker.messages.model
Methods in uk.ac.manchester.spinnaker.messages.model with parameters of type CoreLocation Modifier and Type Method Description void
ExecutableTargets. addProcessor(String binary, CoreLocation core)
Add a processor to the executable targets. -
Uses of CoreLocation in uk.ac.manchester.spinnaker.messages.scp
Fields in uk.ac.manchester.spinnaker.messages.scp declared as CoreLocation Modifier and Type Field Description static CoreLocation
SCPRequest. BOOT_MONITOR_CORE
The location of the default SCAMP. -
Uses of CoreLocation in uk.ac.manchester.spinnaker.messages.sdp
Methods in uk.ac.manchester.spinnaker.messages.sdp that return CoreLocation Modifier and Type Method Description CoreLocation
SDPLocation. asCoreLocation()
-
Uses of CoreLocation in uk.ac.manchester.spinnaker.storage
Fields in uk.ac.manchester.spinnaker.storage declared as CoreLocation Modifier and Type Field Description @Valid CoreLocation
BufferManagerStorage.Region. core
What core owned the region? Note that the region might be retrieved from another core of the same chip.Methods in uk.ac.manchester.spinnaker.storage that return types with arguments of type CoreLocation Modifier and Type Method Description List<CoreLocation>
BufferManagerStorage. getCoresWithStorage()
Get a list of all cores that have data stored in the database.List<CoreLocation>
DSEStorage. listCoresToLoad(DSEStorage.Ethernet ethernet, boolean loadSystemCores)
Get a list of all cores that need to be done for a particular ethernet.Methods in uk.ac.manchester.spinnaker.storage with parameters of type CoreLocation Modifier and Type Method Description Map<Integer,RegionInfo>
DSEStorage. getRegionPointersAndContent(CoreLocation xyp)
Gets a map of region ids to pointers and content Maps only regions with a none zero size.LinkedHashMap<Integer,Integer>
DSEStorage. getRegionSizes(CoreLocation xyp)
Get a map of region id to size for regions with a none zero size.MemoryLocation
DSEStorage. getStartAddress(CoreLocation xyp)
Gets the start address for the metadata on this core.void
DSEStorage. setRegionPointer(CoreLocation xyp, int regionNum, int pointer)
Set the pointer for where to write the region data to.void
DSEStorage. setStartAddress(CoreLocation xyp, MemoryLocation start)
Record the start address for the metadata on this core. -
Uses of CoreLocation in uk.ac.manchester.spinnaker.storage.sqlite
Methods in uk.ac.manchester.spinnaker.storage.sqlite that return types with arguments of type CoreLocation Modifier and Type Method Description List<CoreLocation>
SQLiteBufferStorage. getCoresWithStorage()
List<CoreLocation>
SQLiteDataSpecStorage. listCoresToLoad(DSEStorage.Ethernet ethernet, boolean loadSystemCores)
Methods in uk.ac.manchester.spinnaker.storage.sqlite with parameters of type CoreLocation Modifier and Type Method Description HashMap<Integer,RegionInfo>
SQLiteDataSpecStorage. getRegionPointersAndContent(CoreLocation xyp)
LinkedHashMap<Integer,Integer>
SQLiteDataSpecStorage. getRegionSizes(CoreLocation core)
MemoryLocation
SQLiteDataSpecStorage. getStartAddress(CoreLocation xyp)
void
SQLiteDataSpecStorage. setRegionPointer(CoreLocation xyp, int regionNum, int pointer)
void
SQLiteDataSpecStorage. setStartAddress(CoreLocation xyp, MemoryLocation start)
-
Uses of CoreLocation in uk.ac.manchester.spinnaker.transceiver
Methods in uk.ac.manchester.spinnaker.transceiver that return types with arguments of type CoreLocation Modifier and Type Method Description default Map<CoreLocation,CPUInfo>
TransceiverInterface. getCoresNotInState(@Valid CoreSubsets allCoreSubsets, @NotNull CPUState state)
Get all cores that are not in a given state.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.Map<CoreLocation,ReinjectionStatus>
Transceiver. getReinjectionStatus(CoreSubsets monitorCores)
Map<CoreLocation,ReinjectionStatus>
TransceiverInterface. getReinjectionStatus(@Valid CoreSubsets monitorCores)
Get the packet reinjection status of some monitor processes.