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

Cfg checker #119

Merged
merged 3 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
32 changes: 0 additions & 32 deletions examples/extra_models_examples/vogel_2011/spynnaker.cfg
Original file line number Diff line number Diff line change
@@ -1,34 +1,2 @@
[Simulation]
incoming_spike_buffer_size = 2048

# performance controller to ensure only so many packets from a given
# app vertex happen at any given time (aka how many machine vertices
# from this app vertex can fire at same time)
app_machine_quantity = 5

# performance controller for how long to wait in-between cores firing. Used
# as a throttle to handle slow core processing. unit = microseconds
# plastic compressor and spreader
#time_between_cores = 14
# plastic compressor
#time_between_cores = 66
# plastic bitfields on
#time_between_cores = 66
# plastic old master
#time_between_cores = 78

# 6 board cheating
#time_between_cores = 1.2
# confirmed
#time_between_cores = 7
# static compressor and spreader
time_between_cores = 2.7
# static compressor
#time_between_cores = 2.7
# static bitfields on
#time_between_cores = 4
# static old master
#time_between_cores = 6

# performance controller for how much of the time step to use for sending
fraction_of_time_spike_sending = 0.99
8 changes: 1 addition & 7 deletions unittests/test_cfg_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,5 @@ def test_config_checks(self):
parent = os.path.dirname(unittests)
examples = os.path.join(parent, "examples")
integration_tests = os.path.join(parent, "integration_tests")
repeaters = [
"placer",
"info_allocator",
"router",
"compressor",
"delay_support_adder"]
run_config_checks(directories=[
examples, integration_tests, unittests], repeaters=repeaters)
examples, integration_tests, unittests], check_all_used=False)