Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better SDP Handling #131

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Flake8
  • Loading branch information
rowleya committed Nov 4, 2019
commit a3a1a12751d0973ebc86615540d449f1da46ffc2
4 changes: 2 additions & 2 deletions gfe_integration_tests/test_scamp/test_scamp.py
Original file line number Diff line number Diff line change
@@ -96,8 +96,8 @@ def test_scp():
core_subsets = CoreSubsets()
for x, y in machine.chip_coordinates:
chip = machine.get_chip_at(x, y)
cs = CoreSubset(x, y, range(1, chip.n_processors))
core_subsets.add_core_subset(cs)
subset = CoreSubset(x, y, range(1, chip.n_processors))
core_subsets.add_core_subset(subset)

print("Executing application")
txrx.execute_flood(core_subsets, "scp_test.aplx", app_id, is_filename=True)