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 Jul 5, 2023
2 parents 5a6fcc3 + 4e6199d commit 7a549bc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
5 changes: 5 additions & 0 deletions unittests/test_sata_connectors/spynnaker.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ down_chips = None
down_links = 2,5,2:2,5,3:6,1,2:6,1,3:10,9,2:10,9,3
width = 12
height = 12

[Mode]
# mode = Production or Debug
# In Debug mode all report boolean config values are automatically overwritten to True
mode = Debug
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ def do_run():
p.external_devices.ArbitraryFPGADevice(
2000, fpga_link_id=12, fpga_id=1,
board_address="127.0.0.0",
label="bacon")
label="src_1")
)

src_2 = p.Population(
None,
p.external_devices.ArbitraryFPGADevice(
2000, fpga_link_id=11, fpga_id=1,
board_address="127.0.4.8",
label="bacon")
label="src_2")
)

tgt = p.Population(1, p.IF_curr_exp())
tgt = p.Population(1, p.IF_curr_exp(), label="tgt")
p.Projection(src_1, tgt, p.AllToAllConnector())
p.Projection(src_2, tgt, p.AllToAllConnector())

Expand Down
5 changes: 5 additions & 0 deletions unittests/test_spinnaker_link_connectors/spynnaker.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ down_chips = None
down_links = 0,0,4:4,8,4:8,4,4
width = 12
height = 12

[Mode]
# mode = Production or Debug
# In Debug mode all report boolean config values are automatically overwritten to True
mode = Debug

0 comments on commit 7a549bc

Please sign in to comment.