cd19f843caff39e136766a353807ab3a7d4c6a57,spynnaker/pyNN/models/utility_models/delay_extension_vertex.py,DelayExtensionVertex,write_delay_parameters,#DelayExtensionVertex#Any#Any#Any#Any#Any#Any#Any#Any#Any#,260

Before Change


        spec.write_value(data=self._n_delay_stages)

        // Write the random back off value
        spec.write_value(random.randint(0, total_n_vertices))

        // Write the time between spikes
        spikes_per_timestep = self._n_delay_stages * vertex_slice.n_atoms
        time_between_spikes = (

After Change


        spec.write_value(data=self._n_delay_stages)

        // Write the offset value
        max_offset = (
            machine_time_step * time_scale_factor) // _MAX_OFFSET_DENOMINATOR
        spec.write_value(
            int(math.ceil(max_offset / total_n_vertices)) * self._n_data_specs)
        self._n_data_specs += 1

        // Write the time between spikes
        spikes_per_timestep = self._n_delay_stages * vertex_slice.n_atoms
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 12

Instances


Project Name: SpiNNakerManchester/sPyNNaker
Commit Name: cd19f843caff39e136766a353807ab3a7d4c6a57
Time: 2019-01-17
Author: Andrew.Rowley@manchester.ac.uk
File Name: spynnaker/pyNN/models/utility_models/delay_extension_vertex.py
Class Name: DelayExtensionVertex
Method Name: write_delay_parameters


Project Name: SpiNNakerManchester/sPyNNaker
Commit Name: cd19f843caff39e136766a353807ab3a7d4c6a57
Time: 2019-01-17
Author: Andrew.Rowley@manchester.ac.uk
File Name: spynnaker/pyNN/models/neuron/abstract_population_vertex.py
Class Name: AbstractPopulationVertex
Method Name: _write_neuron_parameters


Project Name: SpiNNakerManchester/sPyNNaker
Commit Name: cd19f843caff39e136766a353807ab3a7d4c6a57
Time: 2019-01-17
Author: Andrew.Rowley@manchester.ac.uk
File Name: spynnaker/pyNN/models/spike_source/spike_source_poisson_vertex.py
Class Name: SpikeSourcePoissonVertex
Method Name: _write_poisson_parameters