Skip to content

Commit

Permalink
merged in master
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Apr 26, 2024
2 parents 1f6399c + a54e3c4 commit 81c39f5
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions spinnman/processes/get_machine_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,20 @@ def _make_chip(self, chip_info: ChipSummaryInfo, machine: Machine) -> Chip:
n_cores = min(chip_info.n_cores, n_cores)
core_states = chip_info.core_states
down_cores = self._ignore_cores_map.get(
(chip_info.x, chip_info.y), None)
(chip_info.x, chip_info.y), set())
if 0 in down_cores:
raise NotImplementedError(
"Declaring scamp core (0) as down is not supported")
cores = list()
for i in range(1, n_cores):
if core_states[i] != CPUState.IDLE:
if i in down_cores:
pass
elif core_states[i] != CPUState.IDLE:
self._report_ignore(
"Not using core {}, {}, {} in state {}",
chip_info.x, chip_info.y, i, core_states[i])
if down_cores is None:
down_cores = set()
down_cores.add(i)
else:
cores.append(i)

# Create the router
router = self._make_router(chip_info, machine)
Expand All @@ -139,12 +144,13 @@ def _make_chip(self, chip_info: ChipSummaryInfo, machine: Machine) -> Chip:

# Create the chip
return Chip(
x=chip_info.x, y=chip_info.y, n_processors=n_cores,
x=chip_info.x, y=chip_info.y, scamp_processors=[0],
placable_processors=cores,
router=router, sdram=sdram_size,
ip_address=chip_info.ethernet_ip_address,
nearest_ethernet_x=chip_info.nearest_ethernet_x,
nearest_ethernet_y=chip_info.nearest_ethernet_y,
down_cores=down_cores, parent_link=chip_info.parent_link)
parent_link=chip_info.parent_link)

def _make_router(
self, chip_info: ChipSummaryInfo, machine: Machine) -> Router:
Expand Down

0 comments on commit 81c39f5

Please sign in to comment.