Skip to content

Commit

Permalink
Merge pull request #1440 from SpiNNakerManchester/XY
Browse files Browse the repository at this point in the history
use xy tuple (which now includes Chip)
  • Loading branch information
Christian-B authored Mar 26, 2024
2 parents f8163c3 + 3efdf4c commit 6121186
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def do_run(self):
data.add(placement)

false_data = list(range(0, 16))
for placement in SpynnakerDataView.iterate_placements_on_core(0, 0):
for placement in SpynnakerDataView.iterate_placements_on_core((0, 0)):
if placement in data:
false_data.remove(placement.p)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def do_run(self):
data.add(placement)

false_data = list(range(0, 16))
for placement in SpynnakerDataView.iterate_placements_on_core(0, 0):
for placement in SpynnakerDataView.iterate_placements_on_core((0, 0)):
if placement in data:
false_data.remove(placement.p)

Expand Down

0 comments on commit 6121186

Please sign in to comment.