Skip to content

Commit

Permalink
use xy tuple (which now includes Chip)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Mar 18, 2024
1 parent f8163c3 commit 3efdf4c
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 3efdf4c

Please sign in to comment.