Skip to content

Commit 85e5762

Browse files
authored
Merge branch 'master' into record
2 parents 7f7ec7e + 7ff18f3 commit 85e5762

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spynnaker/pyNN/models/neuron/population_vertex.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
from spynnaker.pyNN.utilities.bit_field_utilities import get_sdram_for_keys
8787
from spynnaker.pyNN.utilities.buffer_data_type import BufferDataType
8888
from spynnaker.pyNN.utilities.constants import (
89-
POSSION_SIGMA_SUMMATION_LIMIT, MAX_RING_BUFFER_BITS)
89+
POISSON_SIGMA_SUMMATION_LIMIT, MAX_RING_BUFFER_BITS)
9090
from spynnaker.pyNN.utilities.utility_calls import (
9191
create_mars_kiss_seeds, check_rng)
9292
from spynnaker.pyNN.utilities.running_stats import RunningStats
@@ -1987,7 +1987,7 @@ def _ring_buffer_expected_upper_bound(
19871987
# Upper end of range for Poisson summation required below
19881988
# upper_bound needs to be an integer
19891989
upper_bound = int(round(average_spikes_per_timestep +
1990-
POSSION_SIGMA_SUMMATION_LIMIT *
1990+
POISSON_SIGMA_SUMMATION_LIMIT *
19911991
math.sqrt(average_spikes_per_timestep)))
19921992

19931993
# pylint:disable=wrong-spelling-in-comment

spynnaker/pyNN/utilities/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from spinn_front_end_common.utilities.constants import (
1616
BYTES_PER_WORD, BYTES_PER_KB)
1717

18-
POSSION_SIGMA_SUMMATION_LIMIT = 3.0
18+
POISSON_SIGMA_SUMMATION_LIMIT = 3.0
1919

2020
BLOCK_INDEX_HEADER_WORDS = 3
2121
BLOCK_INDEX_ROW_WORDS = 2

0 commit comments

Comments
 (0)