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 #1460

Merged
merged 4 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
38 changes: 12 additions & 26 deletions spynnaker/pyNN/spynnaker.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# DO NOT EDIT
# See spinnakermanchester.github.io/common_pages/Algorithms.html
# DO NOT EDIT!
# The are the default values
# Edit the cfg in your home directory to change your preferences
# Add / Edit a cfg in the run directory for script specific changes

# Adds to values in SpiNNFrontEndCommon/spinn_front_end_common/interface/spinnaker.cfg
# Which in turn adds to values in PACMAN/pacman/pacman.cfg,
# SpiNNMan/spinnman/spinnman.cfg, SpiNNUtils/spinn_utilities/spinn_utilities.cfg
# and SpiNNMachine/spinn_machine/spinn_machine.cfg

[Reports]
# Note: graphviz is required to draw the graph
Expand All @@ -9,12 +16,8 @@ write_network_graph = False
network_graph_format = None
# Set to > 0 to allow profiler to gather samples (assuming enabled in the compiled aplx)
n_profile_samples = 0
generate_bit_field_report = False
generate_bit_field_summary_report = False
write_router_compressor_with_bitfield_iobuf = True
write_expander_iobuf = False
write_redundant_packet_count_report = True
write_bit_field_iobuf = False

[Simulation]
# Maximum spikes per second of any neuron (spike rate in Hertz)
Expand Down Expand Up @@ -42,30 +45,13 @@ n_colour_bits = 4
# Whether to error or just warn on non-spynnaker-compatible PyNN
error_on_non_spynnaker_pynn = True

[Mode]
violate_1ms_wall_clock_restriction = False

[Mapping]
# Setting delay_support_adder to None will skip the adder
delay_support_adder = DelaySupportAdder

[Buffers]
# Host and port on which to receive buffer requests
receive_buffer_port = None
receive_buffer_host = 0.0.0.0

# Buffered recording can be enabled below. Note that spike source array
# recording is always buffered.
enable_buffered_recording = False

# These values can be adjusted to set the maximum amount of SDRAM per core
# that will be used for the various neuron parameters to be recorded. This
# will affect how many neurons can fit on a chip.
spike_buffer_size = 1048576
variable_buffer_size = 1048576

# Advanced parameters to further control buffering
buffer_size_before_receive = 16384
time_between_requests = 250

minimum_buffer_sdram = 1048576

[Recording]
# Uncomment the following to change from the defaults
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,3 @@ mode = Debug

[Java]
use_java = True

[Reports]
generate_bit_field_report = False
generate_bit_field_summary_report = False