Skip to content

Commit

Permalink
Reduce width of value sink operator
Browse files Browse the repository at this point in the history
Should reduce packet dropping for particularly large SPA models.
  • Loading branch information
mundya committed Apr 7, 2016
1 parent 872ccd5 commit 20a5cdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nengo_spinnaker/operators/value_sink.py
Expand Up @@ -37,7 +37,7 @@ class ValueSink(object):
sample_every : int
Number of machine timesteps between taking samples.
"""
def __init__(self, probe, dt, max_width=64):
def __init__(self, probe, dt, max_width=16):
self.probe = probe
self.size_in = probe.size_in
self.max_width = max_width
Expand Down

0 comments on commit 20a5cdc

Please sign in to comment.