From 5f87e1fa6ead0a34b25e81a735e9910706f530d4 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Fri, 21 Jun 2024 07:37:28 +0100 Subject: [PATCH 1/2] disable check all used check --- unittests/test_cfg_checker.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/unittests/test_cfg_checker.py b/unittests/test_cfg_checker.py index 8c58b54..b3d9614 100644 --- a/unittests/test_cfg_checker.py +++ b/unittests/test_cfg_checker.py @@ -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) From 7fb129e139d50854758a0194e4630d9677adb4c4 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Fri, 21 Jun 2024 12:54:36 +0100 Subject: [PATCH 2/2] remove no longer used options --- .../vogel_2011/spynnaker.cfg | 32 ------------------- 1 file changed, 32 deletions(-) diff --git a/examples/extra_models_examples/vogel_2011/spynnaker.cfg b/examples/extra_models_examples/vogel_2011/spynnaker.cfg index a5c114f..5ef2d6b 100644 --- a/examples/extra_models_examples/vogel_2011/spynnaker.cfg +++ b/examples/extra_models_examples/vogel_2011/spynnaker.cfg @@ -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