├── .coveragerc ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── add_prs_to_project.yml │ ├── c_actions.yml │ ├── publish.yml │ └── python_actions.yml ├── .gitignore ├── .pylint_dict.txt ├── .ratexcludes ├── .readthedocs.yml ├── 2DNeuronsAndKeys.png ├── CITATION.cff ├── LICENSE ├── LICENSE_POLICY.md ├── MANIFEST.in ├── README.md ├── RowsIn1DAnd2D.png ├── doc ├── Makefile ├── doc_requirements.txt ├── global │ ├── .nojekyll │ ├── index.html │ ├── python │ │ └── index.html │ └── spinnaker.css ├── make.bat ├── source │ ├── .gitignore │ ├── _static │ │ └── .gitignore │ ├── conf.py │ ├── index.rst │ └── modules.rst └── unfiltered-files.txt ├── import_hook.py ├── interdimensional_compatibility.md ├── mypy.bash ├── mypyd.bash ├── neural_modelling ├── .common_template.tag ├── .fec_template.tag ├── .gitignore ├── .sllt_template.tag ├── Doc │ └── doxygen_html_style.css ├── Doxyfile ├── Makefile ├── diagrams │ ├── spynnaker_c_code_flow.dia │ └── spynnaker_c_code_flow.png ├── mainpage.dox ├── make │ ├── funcs.mk │ ├── local_only_build.mk │ ├── neural_build.mk │ ├── neural_support.mk │ ├── neuron_only_build.mk │ └── synapse_build.mk ├── makefiles │ ├── delay_extension │ │ └── Makefile │ ├── local_only_combined │ │ ├── IF_curr_exp_conv │ │ │ └── Makefile │ │ ├── IF_curr_exp_pool_dense │ │ │ └── Makefile │ │ ├── Makefile │ │ └── local_only.mk │ ├── neural_support.mk │ ├── neuron │ │ ├── IF_cond_exp │ │ │ └── Makefile │ │ ├── IF_cond_exp_stdp_mad_nearest_pair_additive │ │ │ └── Makefile │ │ ├── IF_cond_exp_stdp_mad_pair_additive │ │ │ └── Makefile │ │ ├── IF_cond_exp_stoc │ │ │ └── Makefile │ │ ├── IF_curr_alpha │ │ │ └── Makefile │ │ ├── IF_curr_alpha_stdp_mad_pair_additive │ │ │ └── Makefile │ │ ├── IF_curr_delta │ │ │ └── Makefile │ │ ├── IF_curr_delta_ca2_adaptive │ │ │ └── Makefile │ │ ├── IF_curr_delta_fixed_prob │ │ │ └── Makefile │ │ ├── IF_curr_delta_stdp_mad_nearest_pair_additive │ │ │ └── Makefile │ │ ├── IF_curr_delta_stdp_mad_pair_additive │ │ │ └── Makefile │ │ ├── IF_curr_exp │ │ │ └── Makefile │ │ ├── IF_curr_exp_ca2_adaptive │ │ │ └── Makefile │ │ ├── IF_curr_exp_ca2_adaptive_stdp_mad_pair_additive │ │ │ └── Makefile │ │ ├── IF_curr_exp_dual │ │ │ └── Makefile │ │ ├── IF_curr_exp_sEMD │ │ │ └── Makefile │ │ ├── IF_curr_exp_stdp_mad_nearest_pair_additive │ │ │ └── Makefile │ │ ├── IF_curr_exp_stdp_mad_nearest_pair_multiplicative │ │ │ └── Makefile │ │ ├── IF_curr_exp_stdp_mad_pair_additive │ │ │ └── Makefile │ │ ├── IF_curr_exp_stdp_mad_pair_multiplicative │ │ │ └── Makefile │ │ ├── IF_curr_exp_stdp_mad_pfister_triplet_additive │ │ │ └── Makefile │ │ ├── IF_curr_exp_stdp_mad_recurrent_dual_fsm_multiplicative │ │ │ └── Makefile │ │ ├── IF_curr_exp_stdp_mad_recurrent_pre_stochastic_multiplicative │ │ │ └── Makefile │ │ ├── IF_curr_exp_stdp_mad_vogels_2011_additive │ │ │ └── Makefile │ │ ├── IF_curr_exp_weight_change │ │ │ └── Makefile │ │ ├── IF_trunc_delta │ │ │ └── Makefile │ │ ├── IZK_cond_exp │ │ │ └── Makefile │ │ ├── IZK_cond_exp_dual │ │ │ └── Makefile │ │ ├── IZK_cond_exp_dual_stdp_mad_pair_additive │ │ │ └── Makefile │ │ ├── IZK_cond_exp_stdp_mad_pair_additive │ │ │ └── Makefile │ │ ├── IZK_curr_exp │ │ │ └── Makefile │ │ ├── IZK_curr_exp_stdp_mad_pair_additive │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── external_device_lif_control │ │ │ └── Makefile │ │ ├── neural_build.mk │ │ ├── stoc_exp │ │ │ └── Makefile │ │ ├── stoc_exp_stable │ │ │ └── Makefile │ │ └── stoc_sigma │ │ │ └── Makefile │ ├── neuron_only │ │ ├── IF_cond_exp_neuron │ │ │ └── Makefile │ │ ├── IF_cond_exp_stoc_neuron │ │ │ └── Makefile │ │ ├── IF_curr_alpha_neuron │ │ │ └── Makefile │ │ ├── IF_curr_delta_ca2_adaptive_neuron │ │ │ └── Makefile │ │ ├── IF_curr_delta_neuron │ │ │ └── Makefile │ │ ├── IF_curr_exp_ca2_adaptive_neuron │ │ │ └── Makefile │ │ ├── IF_curr_exp_dual_neuron │ │ │ └── Makefile │ │ ├── IF_curr_exp_neuron │ │ │ └── Makefile │ │ ├── IF_curr_exp_sEMD_neuron │ │ │ └── Makefile │ │ ├── IZK_cond_exp_dual_neuron │ │ │ └── Makefile │ │ ├── IZK_cond_exp_neuron │ │ │ └── Makefile │ │ ├── IZK_curr_exp_neuron │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── external_device_lif_control_neuron │ │ │ └── Makefile │ │ └── neuron_build.mk │ ├── robot_motor_control │ │ └── Makefile │ ├── spike_source │ │ └── poisson │ │ │ └── Makefile │ ├── synapse_expander │ │ ├── Makefile │ │ ├── neuron_expander.mk │ │ └── synapse_expander.mk │ └── synapse_only │ │ ├── Makefile │ │ ├── synapse_build.mk │ │ ├── synapses │ │ └── Makefile │ │ ├── synapses_stdp_izhikevich_neuromodulation_pair_additive │ │ └── Makefile │ │ ├── synapses_stdp_izhikevich_neuromodulation_pair_additive_structural_last_neuron_distance_weight │ │ └── Makefile │ │ ├── synapses_stdp_izhikevich_neuromodulation_pair_additive_structural_random_distance_weight │ │ └── Makefile │ │ ├── synapses_stdp_izhikevich_neuromodulation_pair_multiplicative │ │ └── Makefile │ │ ├── synapses_stdp_izhikevich_neuromodulation_vogels_2011_additive │ │ └── Makefile │ │ ├── synapses_stdp_mad_nearest_pair_additive │ │ └── Makefile │ │ ├── synapses_stdp_mad_nearest_pair_additive_structural_random_distance_weight │ │ └── Makefile │ │ ├── synapses_stdp_mad_nearest_pair_multiplicative │ │ └── Makefile │ │ ├── synapses_stdp_mad_pair_additive │ │ └── Makefile │ │ ├── synapses_stdp_mad_pair_additive_structural_last_neuron_distance_weight │ │ └── Makefile │ │ ├── synapses_stdp_mad_pair_additive_structural_random_distance_weight │ │ └── Makefile │ │ ├── synapses_stdp_mad_pair_multiplicative │ │ └── Makefile │ │ ├── synapses_stdp_mad_pfister_triplet_additive │ │ └── Makefile │ │ ├── synapses_stdp_mad_recurrent_dual_fsm_multiplicative │ │ └── Makefile │ │ ├── synapses_stdp_mad_vogels_2011_additive │ │ └── Makefile │ │ ├── synapses_structural_last_neuron_distance_weight │ │ └── Makefile │ │ └── synapses_structural_random_distance_weight │ │ └── Makefile ├── setup.bash └── src │ ├── common │ ├── in_spikes.h │ ├── maths-util.h │ ├── munich_protocol.h │ ├── neuron-typedefs.h │ └── send_mc.h │ ├── delay_extension │ ├── delay_extension.c │ └── delay_extension.h │ ├── neuron │ ├── additional_inputs │ │ ├── additional_input.h │ │ ├── additional_input_ca2_adaptive_impl.h │ │ └── additional_input_none_impl.h │ ├── c_main.c │ ├── c_main_common.h │ ├── c_main_local_only.c │ ├── c_main_neuron_common.h │ ├── c_main_neurons.c │ ├── c_main_synapse_common.h │ ├── c_main_synapses.c │ ├── current_sources │ │ ├── current_source.h │ │ ├── current_source_ac.h │ │ ├── current_source_ac_only_impl.h │ │ ├── current_source_dc.h │ │ ├── current_source_dc_only_impl.h │ │ ├── current_source_impl.h │ │ ├── current_source_noisy.h │ │ ├── current_source_noisy_only_impl.h │ │ ├── current_source_step.h │ │ ├── current_source_step_only_impl.h │ │ └── current_source_stepnoisy_impl.h │ ├── decay.h │ ├── dma_common.h │ ├── implementations │ │ ├── neuron_impl.h │ │ ├── neuron_impl_external_devices.h │ │ ├── neuron_impl_standard.h │ │ ├── neuron_impl_stoc_exp.h │ │ ├── neuron_impl_stoc_exp_stable.h │ │ ├── neuron_impl_stoc_sigma.h │ │ └── stoc_exp_common.h │ ├── input_types │ │ ├── input_type.h │ │ ├── input_type_conductance.h │ │ ├── input_type_current.h │ │ ├── input_type_delta.h │ │ └── input_type_none.h │ ├── local_only.c │ ├── local_only.h │ ├── local_only │ │ ├── local_only_2d_common.h │ │ ├── local_only_conv_impl.c │ │ ├── local_only_impl.h │ │ └── local_only_pool_dense_impl.c │ ├── models │ │ ├── neuron_model.h │ │ ├── neuron_model_if_trunc.h │ │ ├── neuron_model_izh_impl.h │ │ └── neuron_model_lif_impl.h │ ├── neuron.c │ ├── neuron.h │ ├── neuron_recording.h │ ├── plasticity │ │ ├── stdp │ │ │ ├── maths.h │ │ │ ├── post_events.h │ │ │ ├── post_events_with_da.h │ │ │ ├── stdp_typedefs.h │ │ │ ├── synapse_dynamics_stdp_common.h │ │ │ ├── synapse_dynamics_stdp_izhikevich_neuromodulation.c │ │ │ ├── synapse_dynamics_stdp_mad_impl.c │ │ │ ├── synapse_structure │ │ │ │ ├── synapse_structure.h │ │ │ │ ├── synapse_structure_weight_accumulator_impl.h │ │ │ │ ├── synapse_structure_weight_impl.h │ │ │ │ ├── synapse_structure_weight_state_accumulator_impl.h │ │ │ │ └── synapse_structure_weight_state_accumulator_window_impl.h │ │ │ ├── timing_dependence │ │ │ │ ├── random_util.h │ │ │ │ ├── timing.h │ │ │ │ ├── timing_nearest_pair_impl.c │ │ │ │ ├── timing_nearest_pair_impl.h │ │ │ │ ├── timing_pair_impl.c │ │ │ │ ├── timing_pair_impl.h │ │ │ │ ├── timing_pfister_triplet_impl.c │ │ │ │ ├── timing_pfister_triplet_impl.h │ │ │ │ ├── timing_recurrent_common.h │ │ │ │ ├── timing_recurrent_dual_fsm_impl.c │ │ │ │ ├── timing_recurrent_dual_fsm_impl.h │ │ │ │ ├── timing_recurrent_pre_stochastic_impl.c │ │ │ │ ├── timing_recurrent_pre_stochastic_impl.h │ │ │ │ ├── timing_vogels_2011_impl.c │ │ │ │ └── timing_vogels_2011_impl.h │ │ │ └── weight_dependence │ │ │ │ ├── weight.h │ │ │ │ ├── weight_additive_one_term_impl.c │ │ │ │ ├── weight_additive_one_term_impl.h │ │ │ │ ├── weight_additive_two_term_impl.c │ │ │ │ ├── weight_additive_two_term_impl.h │ │ │ │ ├── weight_multiplicative_impl.c │ │ │ │ ├── weight_multiplicative_impl.h │ │ │ │ ├── weight_one_term.h │ │ │ │ └── weight_two_term.h │ │ ├── synapse_dynamics.h │ │ ├── synapse_dynamics_remote.c │ │ ├── synapse_dynamics_static_impl.c │ │ └── weight_change │ │ │ ├── post_events_with_weight_change.h │ │ │ └── synapse_dynamics_external_weight_change.c │ ├── population_table │ │ ├── population_table.h │ │ └── population_table_binary_search_impl.c │ ├── profile_tags.h │ ├── regions.h │ ├── send_spike.h │ ├── spike_processing.c │ ├── spike_processing.h │ ├── spike_processing_fast.c │ ├── spike_processing_fast.h │ ├── structural_plasticity │ │ ├── synaptogenesis │ │ │ ├── elimination │ │ │ │ ├── elimination.h │ │ │ │ ├── elimination_random_by_weight_impl.c │ │ │ │ └── elimination_random_by_weight_impl.h │ │ │ ├── formation │ │ │ │ ├── formation.h │ │ │ │ ├── formation_distance_dependent_impl.c │ │ │ │ └── formation_distance_dependent_impl.h │ │ │ ├── partner_selection │ │ │ │ ├── last_neuron_selection_impl.c │ │ │ │ ├── last_neuron_selection_impl.h │ │ │ │ ├── partner.h │ │ │ │ ├── random_selection_impl.c │ │ │ │ └── random_selection_impl.h │ │ │ ├── sp_structs.h │ │ │ └── topographic_map_impl.c │ │ ├── synaptogenesis_dynamics.h │ │ └── synaptogenesis_dynamics_static_impl.c │ ├── synapse_row.h │ ├── synapse_types │ │ ├── exp_synapse_utils.h │ │ ├── synapse_types.h │ │ ├── synapse_types_alpha_impl.h │ │ ├── synapse_types_delta_impl.h │ │ ├── synapse_types_dual_excitatory_exponential_impl.h │ │ ├── synapse_types_exponential_impl.h │ │ └── synapse_types_semd_impl.h │ ├── synapses.c │ ├── synapses.h │ └── threshold_types │ │ ├── threshold_type.h │ │ ├── threshold_type_fixed_prob.h │ │ ├── threshold_type_maass_stochastic.h │ │ ├── threshold_type_none.h │ │ └── threshold_type_static.h │ ├── robot_motor_control │ └── robot_motor_control.c │ ├── spike_source │ └── poisson │ │ ├── profile_tags.h │ │ └── spike_source_poisson.c │ └── synapse_expander │ ├── bit_field_expander.h │ ├── common_kernel.c │ ├── common_kernel.h │ ├── common_mem.h │ ├── connection_generator.c │ ├── connection_generator.h │ ├── connection_generators │ ├── connection_generator_all_but_me.h │ ├── connection_generator_all_to_all.h │ ├── connection_generator_fixed_post.h │ ├── connection_generator_fixed_pre.h │ ├── connection_generator_fixed_prob.h │ ├── connection_generator_fixed_total.h │ ├── connection_generator_kernel.h │ ├── connection_generator_one_to_one.h │ └── connection_generator_one_to_one_offset.h │ ├── generator_types.h │ ├── matrix_generator.c │ ├── matrix_generator.h │ ├── matrix_generators │ ├── matrix_generator_common.h │ ├── matrix_generator_neuromodulation.h │ ├── matrix_generator_static.h │ ├── matrix_generator_stdp.h │ └── matrix_generator_weight_changer.h │ ├── neuron_expander.c │ ├── param_generator.c │ ├── param_generator.h │ ├── param_generators │ ├── param_generator_constant.h │ ├── param_generator_exponential.h │ ├── param_generator_exponential_clipped.h │ ├── param_generator_normal.h │ ├── param_generator_normal_clipped.h │ ├── param_generator_normal_clipped_to_boundary.h │ └── param_generator_uniform.h │ ├── rng.c │ ├── rng.h │ ├── synapse_expander.c │ └── type_writers.h ├── pip_freeze.txt ├── proxy_integration_tests ├── __init__.py └── test_python_debug │ ├── __init__.py │ ├── check_debug.py │ ├── spynnaker.cfg │ └── test_debug.py ├── pylint.bash ├── pynn9_neo5_changes.md ├── pypi_to_import ├── pyproject.toml ├── setup.cfg ├── setup.py ├── spynnaker ├── __init__.py ├── _version.py ├── py.typed ├── pyNN │ ├── __init__.py │ ├── _version.py │ ├── config_setup.py │ ├── connections │ │ ├── __init__.py │ │ ├── ethernet_command_connection.py │ │ ├── ethernet_control_connection.py │ │ ├── spif_live_spikes_connection.py │ │ ├── spynnaker_live_spikes_connection.py │ │ └── spynnaker_poisson_control_connection.py │ ├── data │ │ ├── __init__.py │ │ ├── spynnaker_data_view.py │ │ └── spynnaker_data_writer.py │ ├── exceptions.py │ ├── external_devices │ │ └── __init__.py │ ├── external_devices_models │ │ ├── __init__.py │ │ ├── abstract_ethernet_controller.py │ │ ├── abstract_ethernet_sensor.py │ │ ├── abstract_ethernet_translator.py │ │ ├── abstract_multicast_controllable_device.py │ │ ├── arbitrary_fpga_device.py │ │ ├── external_device_lif_control.py │ │ ├── external_device_lif_control_vertex.py │ │ ├── external_spinnaker_link_fpga_retina_device.py │ │ ├── icub_retina_device.py │ │ ├── machine_munich_motor_device.py │ │ ├── munich_spinnaker_link_motor_device.py │ │ ├── munich_spinnaker_link_retina_device.py │ │ ├── push_bot │ │ │ ├── __init__.py │ │ │ ├── abstract_push_bot_output_device.py │ │ │ ├── abstract_push_bot_retina_device.py │ │ │ ├── control │ │ │ │ ├── __init__.py │ │ │ │ ├── push_bot_lif_ethernet.py │ │ │ │ └── push_bot_lif_spinnaker_link.py │ │ │ ├── ethernet │ │ │ │ ├── __init__.py │ │ │ │ ├── push_bot_device.py │ │ │ │ ├── push_bot_laser_device.py │ │ │ │ ├── push_bot_led_device.py │ │ │ │ ├── push_bot_motor_device.py │ │ │ │ ├── push_bot_retina_connection.py │ │ │ │ ├── push_bot_retina_device.py │ │ │ │ ├── push_bot_speaker_device.py │ │ │ │ ├── push_bot_translator.py │ │ │ │ └── push_bot_wifi_connection.py │ │ │ ├── parameters │ │ │ │ ├── __init__.py │ │ │ │ ├── push_bot_laser.py │ │ │ │ ├── push_bot_led.py │ │ │ │ ├── push_bot_motor.py │ │ │ │ ├── push_bot_retina_resolution.py │ │ │ │ ├── push_bot_retina_viewer.py │ │ │ │ └── push_bot_speaker.py │ │ │ └── spinnaker_link │ │ │ │ ├── __init__.py │ │ │ │ ├── push_bot_laser_device.py │ │ │ │ ├── push_bot_led_device.py │ │ │ │ ├── push_bot_motor_device.py │ │ │ │ ├── push_bot_retina_device.py │ │ │ │ └── push_bot_speaker_device.py │ │ ├── spif_devices.py │ │ ├── spif_input_device.py │ │ ├── spif_output_device.py │ │ ├── spif_retina_device.py │ │ └── threshold_type_multicast_device_control.py │ ├── extra_algorithms │ │ ├── __init__.py │ │ ├── connection_holder_finisher.py │ │ ├── delay_support_adder.py │ │ ├── neuron_expander.py │ │ ├── redundant_packet_count_report.py │ │ ├── splitter_components │ │ │ ├── __init__.py │ │ │ ├── abstract_spynnaker_splitter_delay.py │ │ │ ├── abstract_supports_one_to_one_sdram_input.py │ │ │ ├── splitter_delay_vertex_slice.py │ │ │ ├── splitter_poisson_delegate.py │ │ │ ├── splitter_population_vertex.py │ │ │ ├── splitter_population_vertex_fixed.py │ │ │ ├── splitter_population_vertex_neurons_synapses.py │ │ │ ├── splitter_utils.py │ │ │ └── spynnaker_splitter_selector.py │ │ ├── spynnaker_connection_holder_generations.py │ │ ├── spynnaker_neuron_network_specification_report.py │ │ ├── spynnaker_synaptic_matrix_report.py │ │ └── synapse_expander.py │ ├── extra_models │ │ └── __init__.py │ ├── model_binaries │ │ ├── .gitignore │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── abstract_models │ │ │ ├── __init__.py │ │ │ ├── abstract_accepts_incoming_synapses.py │ │ │ ├── abstract_has_delay_stages.py │ │ │ ├── abstract_max_spikes.py │ │ │ ├── abstract_neuron_expandable.py │ │ │ ├── abstract_synapse_expandable.py │ │ │ ├── coloured_application_vertex.py │ │ │ ├── has_shape_key_fields.py │ │ │ ├── has_synapses.py │ │ │ ├── receives_synaptic_inputs_over_sdram.py │ │ │ ├── sends_synaptic_inputs_over_sdram.py │ │ │ └── supports_structure.py │ │ ├── abstract_pynn_model.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── eieio_spike_recorder.py │ │ │ ├── local_only_2d_common.py │ │ │ ├── multi_spike_recorder.py │ │ │ ├── neuron_recorder.py │ │ │ ├── param_generator_data.py │ │ │ ├── parameter_holder.py │ │ │ ├── population_application_vertex.py │ │ │ ├── recording_utils.py │ │ │ └── types.py │ │ ├── current_sources │ │ │ ├── __init__.py │ │ │ ├── abstract_current_source.py │ │ │ ├── ac_source.py │ │ │ ├── dc_source.py │ │ │ ├── noisy_current_source.py │ │ │ └── step_current_source.py │ │ ├── defaults.py │ │ ├── neural_projections │ │ │ ├── __init__.py │ │ │ ├── connectors │ │ │ │ ├── __init__.py │ │ │ │ ├── abstract_connector.py │ │ │ │ ├── abstract_generate_connector_on_host.py │ │ │ │ ├── abstract_generate_connector_on_machine.py │ │ │ │ ├── all_but_me_connector.py │ │ │ │ ├── all_to_all_connector.py │ │ │ │ ├── array_connector.py │ │ │ │ ├── convolution_connector.py │ │ │ │ ├── csa_connector.py │ │ │ │ ├── distance_dependent_probability_connector.py │ │ │ │ ├── fixed_number_post_connector.py │ │ │ │ ├── fixed_number_pre_connector.py │ │ │ │ ├── fixed_probability_connector.py │ │ │ │ ├── from_file_connector.py │ │ │ │ ├── from_list_connector.py │ │ │ │ ├── index_based_probability_connector.py │ │ │ │ ├── kernel_connector.py │ │ │ │ ├── multapse_connector.py │ │ │ │ ├── one_to_one_connector.py │ │ │ │ ├── one_to_one_offset_connector.py │ │ │ │ ├── pool_dense_connector.py │ │ │ │ └── small_world_connector.py │ │ │ ├── delay_afferent_application_edge.py │ │ │ ├── delayed_application_edge.py │ │ │ ├── projection_application_edge.py │ │ │ └── synapse_information.py │ │ ├── neuron │ │ │ ├── __init__.py │ │ │ ├── abstract_pynn_neuron_model.py │ │ │ ├── abstract_pynn_neuron_model_standard.py │ │ │ ├── additional_inputs │ │ │ │ ├── __init__.py │ │ │ │ ├── abstract_additional_input.py │ │ │ │ └── additional_input_ca2_adaptive.py │ │ │ ├── builds │ │ │ │ ├── __init__.py │ │ │ │ ├── eif_cond_alpha_isfa_ista.py │ │ │ │ ├── hh_cond_exp.py │ │ │ │ ├── if_cond_alpha.py │ │ │ │ ├── if_cond_exp_base.py │ │ │ │ ├── if_cond_exp_stoc.py │ │ │ │ ├── if_curr_alpha.py │ │ │ │ ├── if_curr_delta.py │ │ │ │ ├── if_curr_delta_ca2_adaptive.py │ │ │ │ ├── if_curr_delta_fixed_prob.py │ │ │ │ ├── if_curr_dual_exp_base.py │ │ │ │ ├── if_curr_exp_base.py │ │ │ │ ├── if_curr_exp_ca2_adaptive.py │ │ │ │ ├── if_curr_exp_semd_base.py │ │ │ │ ├── if_facets_hardware1.py │ │ │ │ ├── if_trunc_delta.py │ │ │ │ ├── izk_cond_dual_exp_base.py │ │ │ │ ├── izk_cond_exp_base.py │ │ │ │ ├── izk_curr_exp_base.py │ │ │ │ ├── stoc_exp.py │ │ │ │ ├── stoc_exp_stable.py │ │ │ │ └── stoc_sigma.py │ │ │ ├── connection_holder.py │ │ │ ├── generator_data.py │ │ │ ├── implementations │ │ │ │ ├── __init__.py │ │ │ │ ├── abstract_neuron_impl.py │ │ │ │ ├── abstract_standard_neuron_component.py │ │ │ │ ├── neuron_impl_standard.py │ │ │ │ ├── neuron_impl_stoc_exp.py │ │ │ │ ├── neuron_impl_stoc_exp_stable.py │ │ │ │ └── neuron_impl_stoc_sigma.py │ │ │ ├── input_types │ │ │ │ ├── __init__.py │ │ │ │ ├── abstract_input_type.py │ │ │ │ ├── input_type_conductance.py │ │ │ │ ├── input_type_current.py │ │ │ │ └── input_type_delta.py │ │ │ ├── local_only │ │ │ │ ├── __init__.py │ │ │ │ ├── abstract_local_only.py │ │ │ │ ├── local_only_convolution.py │ │ │ │ └── local_only_pool_dense.py │ │ │ ├── master_pop_table.py │ │ │ ├── neuron_data.py │ │ │ ├── neuron_models │ │ │ │ ├── __init__.py │ │ │ │ ├── neuron_model.py │ │ │ │ ├── neuron_model_if_trunc.py │ │ │ │ ├── neuron_model_izh.py │ │ │ │ └── neuron_model_leaky_integrate_and_fire.py │ │ │ ├── plasticity │ │ │ │ ├── __init__.py │ │ │ │ └── stdp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── common.py │ │ │ │ │ ├── synapse_structure │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abstract_synapse_structure.py │ │ │ │ │ ├── synapse_structure_weight_accumulator.py │ │ │ │ │ └── synapse_structure_weight_only.py │ │ │ │ │ ├── timing_dependence │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abstract_timing_dependence.py │ │ │ │ │ ├── timing_dependence_pfister_spike_triplet.py │ │ │ │ │ ├── timing_dependence_recurrent.py │ │ │ │ │ ├── timing_dependence_spike_nearest_pair.py │ │ │ │ │ ├── timing_dependence_spike_pair.py │ │ │ │ │ └── timing_dependence_vogels_2011.py │ │ │ │ │ └── weight_dependence │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abstract_has_a_plus_a_minus.py │ │ │ │ │ ├── abstract_weight_dependence.py │ │ │ │ │ ├── weight_dependence_additive.py │ │ │ │ │ ├── weight_dependence_additive_triplet.py │ │ │ │ │ └── weight_dependence_multiplicative.py │ │ │ ├── population_machine_common.py │ │ │ ├── population_machine_local_only_combined_vertex.py │ │ │ ├── population_machine_neurons.py │ │ │ ├── population_machine_synapses.py │ │ │ ├── population_machine_synapses_provenance.py │ │ │ ├── population_machine_vertex.py │ │ │ ├── population_neurons_machine_vertex.py │ │ │ ├── population_synapses_machine_vertex_common.py │ │ │ ├── population_synapses_machine_vertex_lead.py │ │ │ ├── population_synapses_machine_vertex_shared.py │ │ │ ├── population_vertex.py │ │ │ ├── structural_plasticity │ │ │ │ ├── __init__.py │ │ │ │ └── synaptogenesis │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── elimination │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abstract_elimination.py │ │ │ │ │ └── random_by_weight_elimination.py │ │ │ │ │ ├── formation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abstract_formation.py │ │ │ │ │ └── distance_dependent_formation.py │ │ │ │ │ └── partner_selection │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abstract_partner_selection.py │ │ │ │ │ ├── last_neuron_selection.py │ │ │ │ │ └── random_selection.py │ │ │ ├── synapse_dynamics │ │ │ │ ├── __init__.py │ │ │ │ ├── abstract_generate_on_machine.py │ │ │ │ ├── abstract_has_parameter_names.py │ │ │ │ ├── abstract_plastic_synapse_dynamics.py │ │ │ │ ├── abstract_sdram_synapse_dynamics.py │ │ │ │ ├── abstract_static_synapse_dynamics.py │ │ │ │ ├── abstract_supports_signed_weights.py │ │ │ │ ├── abstract_synapse_dynamics.py │ │ │ │ ├── abstract_synapse_dynamics_structural.py │ │ │ │ ├── synapse_dynamics_neuromodulation.py │ │ │ │ ├── synapse_dynamics_static.py │ │ │ │ ├── synapse_dynamics_stdp.py │ │ │ │ ├── synapse_dynamics_structural_common.py │ │ │ │ ├── synapse_dynamics_structural_static.py │ │ │ │ ├── synapse_dynamics_structural_stdp.py │ │ │ │ ├── synapse_dynamics_utils.py │ │ │ │ ├── synapse_dynamics_weight_changable.py │ │ │ │ ├── synapse_dynamics_weight_changer.py │ │ │ │ └── types.py │ │ │ ├── synapse_io.py │ │ │ ├── synapse_types │ │ │ │ ├── __init__.py │ │ │ │ ├── abstract_synapse_type.py │ │ │ │ ├── synapse_type_alpha.py │ │ │ │ ├── synapse_type_delta.py │ │ │ │ ├── synapse_type_dual_exponential.py │ │ │ │ ├── synapse_type_exponential.py │ │ │ │ └── synapse_type_semd.py │ │ │ ├── synaptic_matrices.py │ │ │ ├── synaptic_matrix_app.py │ │ │ └── threshold_types │ │ │ │ ├── __init__.py │ │ │ │ ├── abstract_threshold_type.py │ │ │ │ ├── threshold_type_fixed_prob.py │ │ │ │ ├── threshold_type_maass_stochastic.py │ │ │ │ └── threshold_type_static.py │ │ ├── populations │ │ │ ├── __init__.py │ │ │ ├── assembly.py │ │ │ ├── population.py │ │ │ ├── population_base.py │ │ │ └── population_view.py │ │ ├── projection.py │ │ ├── recorder.py │ │ ├── spike_source │ │ │ ├── __init__.py │ │ │ ├── spike_source_array.py │ │ │ ├── spike_source_array_machine_vertex.py │ │ │ ├── spike_source_array_vertex.py │ │ │ ├── spike_source_from_file.py │ │ │ ├── spike_source_poisson.py │ │ │ ├── spike_source_poisson_machine_vertex.py │ │ │ ├── spike_source_poisson_variable.py │ │ │ └── spike_source_poisson_vertex.py │ │ └── utility_models │ │ │ ├── __init__.py │ │ │ ├── delays │ │ │ ├── __init__.py │ │ │ ├── delay_extension_machine_vertex.py │ │ │ └── delay_extension_vertex.py │ │ │ └── spike_injector │ │ │ ├── __init__.py │ │ │ ├── spike_injector.py │ │ │ └── spike_injector_vertex.py │ ├── protocols │ │ ├── __init__.py │ │ ├── munich_io_ethernet_protocol.py │ │ └── munich_io_spinnaker_link_protocol.py │ ├── random_distribution.py │ ├── setup_pynn.py │ ├── spinnaker.py │ ├── spynnaker.cfg │ ├── spynnaker_external_device_plugin_manager.py │ ├── types.py │ └── utilities │ │ ├── __init__.py │ │ ├── bit_field_utilities.py │ │ ├── buffer_data_type.py │ │ ├── constants.py │ │ ├── data_population.py │ │ ├── db.sql │ │ ├── neo_buffer_database.py │ │ ├── neo_compare.py │ │ ├── neo_convertor.py │ │ ├── neo_csv.py │ │ ├── random_stats │ │ ├── __init__.py │ │ ├── abstract_random_stats.py │ │ ├── random_stats_binomial_impl.py │ │ ├── random_stats_exponential_clipped_impl.py │ │ ├── random_stats_exponential_impl.py │ │ ├── random_stats_gamma_impl.py │ │ ├── random_stats_log_normal_impl.py │ │ ├── random_stats_normal_clipped_impl.py │ │ ├── random_stats_normal_impl.py │ │ ├── random_stats_poisson_impl.py │ │ ├── random_stats_randint_impl.py │ │ ├── random_stats_scipy_impl.py │ │ ├── random_stats_uniform_impl.py │ │ └── random_stats_vonmises_impl.py │ │ ├── ranged │ │ ├── __init__.py │ │ └── spynnaker_ranged_list.py │ │ ├── running_stats.py │ │ ├── struct.py │ │ └── utility_calls.py ├── spike_checker.py └── spynnaker_plotting.py ├── spynnaker_integration_tests ├── .gitignore ├── __init__.py ├── conftest.py ├── scripts │ ├── __init__.py │ ├── checker.py │ ├── pattern_spiker.py │ ├── synfire_npop_run.py │ └── synfire_runner.py ├── test_0_1_time_steps │ ├── __init__.py │ └── test_allow_violate │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_allow.py ├── test_additional_params_on_pop_not_recogonised │ ├── __init__.py │ ├── test_additional_params_mix.py │ ├── test_additional_params_needed.py │ └── test_additional_params_not_needed.py ├── test_auto_pause_and_resume_tests │ ├── __init__.py │ ├── test_does_auto_pause │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_synfire_low_sdram_long_run.py │ ├── test_run_forever_recorded │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ ├── test_run_forever_not_recorded.py │ │ └── test_run_forever_recorded.py │ └── too_little_memory │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_synfire_1_too_low_sdram.py ├── test_big_connection │ ├── __init__.py │ ├── test_big_connection.py │ ├── test_java_advanced │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_java_advanced_big_connection.py │ ├── test_java_simple │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_java_simple_big_connection.py │ ├── test_python_advanced │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_python_advanced_big_connection.py │ └── test_python_simple │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_python_simple_big_connection.py ├── test_change_neuron_parameters_between_runs │ ├── __init__.py │ ├── test_add_new_projection_with_reset.py │ ├── test_change_spike_source_poisson.py │ ├── test_initialize.py │ ├── test_set_and_reset.py │ ├── test_set_toffset.py │ ├── test_set_toffset_izk.py │ ├── test_synfire_poisson_if_curr_exp_parameter.py │ └── test_synfire_poisson_if_curr_exp_parameter_test_second_none.py ├── test_connectors │ ├── __init__.py │ ├── test_all_but_me_connector.py │ ├── test_all_to_all_connector.py │ ├── test_array_connector.py │ ├── test_connectors.py │ ├── test_csa_connector.py │ ├── test_distance_dependent_probability_connector.py │ ├── test_distance_dependent_weights_and_delays.py │ ├── test_fixed_number_post_connector.py │ ├── test_fixed_number_pre_connector.py │ ├── test_fixed_prob_connector.py │ ├── test_fixed_total_number_connector.py │ ├── test_from_list_connector_mixed.py │ ├── test_index_based_probability_connector.py │ ├── test_kernel_connector.py │ ├── test_one_to_one_connector.py │ ├── test_one_to_one_offset_connector.py │ ├── test_small_world_connector.py │ ├── test_small_world_connector_fixed.py │ └── test_use_projection_get_in_from_list.py ├── test_current_sources │ ├── __init__.py │ └── test_single_step_current_source.py ├── test_debug_mode │ ├── __init__.py │ ├── check_debug.py │ ├── test_java_debug │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_debug.py │ └── test_python_debug │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_debug.py ├── test_external_devices │ ├── __init__.py │ ├── test_live_neuron_voltage.py │ ├── test_live_spike_translator.py │ ├── test_live_sync.py │ ├── test_multiboard_spike_output.py │ ├── test_recordable_spike_injector.py │ └── test_spike_run_forever_again.py ├── test_ignores │ ├── __init__.py │ ├── spynnaker.cfg │ └── test_ignores.py ├── test_iobuf │ ├── __init__.py │ ├── test_cores_and_binaries_recorded │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_cores_and_binaries_recording.py │ ├── test_multirun │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_multirun_with.py │ ├── test_none_but_active_recorded │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_no_cores.py │ ├── test_only_binaries_recorded │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_only_binaries_recording.py │ └── test_only_cores_recorded │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_only_core_recording.py ├── test_local_only │ ├── __init__.py │ ├── test_2d_1d.py │ ├── test_network_fake_retina_input.py │ ├── test_overlapping_network.py │ ├── test_pool_dense.py │ ├── test_pool_dense_odd.py │ ├── test_pool_dense_values.py │ ├── test_single_spike_kernel_response.py │ └── test_single_spike_kernel_response_delayed.py ├── test_many_boards │ ├── __init__.py │ ├── many_boards.py │ ├── test_java_advanced │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_java_advanced.py │ ├── test_java_simple │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_java_simple.py │ ├── test_python_advanced │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_python_advanced.py │ └── test_python_simple │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_python_simple.py ├── test_multi_blob_recording │ ├── __init__.py │ ├── test_java_advanced │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_multi_blob_recording.py │ └── test_python_advanced │ │ ├── __init__.py │ │ └── test_multi_blob_recording.py ├── test_multi_call_examples │ ├── __init__.py │ ├── poisson_reset.py │ ├── test_larger_run.py │ ├── test_multi_extract.py │ ├── test_multi_run.py │ ├── test_reset_different.py │ ├── test_reset_higher.py │ ├── test_reset_new_input.py │ ├── test_reset_new_pop.py │ ├── test_reset_run.py │ ├── test_single_run.py │ ├── test_smaller_run.py │ └── test_stdp_random_run.py ├── test_no_vertices_functionality │ ├── __init__.py │ └── test_set_to_true │ │ ├── __init__.py │ │ └── test_no_vertices.py ├── test_onchip_compressor │ ├── __init__.py │ ├── many_routes.py │ ├── one_route.py │ ├── test_ordered_covering │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_ordered_covering_compressor.py │ ├── test_pair │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_pair_compressor.py │ └── test_pair_no_ranged │ │ ├── __init__.py │ │ ├── spynnaker.cfg │ │ └── test_pair_no_ranged_compressor.py ├── test_param_vertex │ ├── 200_17_gsyn.csv │ ├── 200_17_spikes.csv │ ├── 200_17_v.csv │ ├── 20_17_gsyn.csv │ ├── 20_17_spikes.csv │ ├── 20_17_v.csv │ ├── 20_1_gsyn.csv │ ├── 20_1_spikes.csv │ ├── 20_1_v.csv │ ├── 20_7_gsyn.csv │ ├── 20_7_spikes.csv │ ├── 20_7_v.csv │ ├── __init__.py │ ├── test_synfire_200n_100pc_with_delays_all_recording.py │ ├── test_synfire_20n_20pc_delays_delay_extensions_all_recording.py │ ├── test_synfire_20n_20pc_delays_no_delay_extension_all_recording.py │ └── test_synfire_20n_20pc_no_delays_all_recording.py ├── test_power_monitoring │ ├── __init__.py │ ├── spynnaker.cfg │ └── test_power_mon.py ├── test_projection_param_retrieval_from_board │ ├── __init__.py │ ├── test_large_pop_weight_delay_retrieval.py │ └── test_synfire_projection_on_same_chip.py ├── test_record_sdram │ ├── __init__.py │ └── test_record_no_projections.py ├── test_record_sdram_no_extra_mons │ ├── __init__.py │ ├── spynnaker.cfg │ └── test_record_no_projections.py ├── test_reuse_connector │ ├── __init__.py │ ├── test_reuse_connector.py │ └── test_reuse_connector_different_pops.py ├── test_routing_info_allocator │ ├── __init__.py │ └── test_zoned │ │ ├── __init__.py │ │ └── test_zoned_routing_info.py ├── test_selective_recording │ ├── __init__.py │ ├── test_recording_on_off.py │ ├── test_sampling.py │ ├── test_sampling_by_compare.py │ └── test_thritytwo.py ├── test_spike_source │ ├── __init__.py │ ├── test_poisson_spike_source.py │ ├── test_poisson_spike_source_sdram.py │ ├── test_spike_source_array.py │ └── test_variable_rate.py ├── test_split_various │ ├── test_split_delays.py │ ├── test_split_impossible.py │ ├── test_split_sdram.py │ ├── test_split_simple.py │ ├── test_split_stdp.py │ ├── test_split_struct.py │ └── test_split_struct_stdp.py ├── test_stdp │ ├── __init__.py │ ├── test_IF_cond_exp_stdp_mad_pair_additive.py │ ├── test_IF_cond_exp_stdp_nearest_pair_additive.py │ ├── test_IF_curr_delta_stdp.py │ ├── test_STDP_nearest_pair_additive.py │ ├── test_STDP_nearest_pair_multiplicative.py │ ├── test_STDP_neuromodulation.py │ ├── test_STDP_pair_additive.py │ ├── test_STDP_pair_multiplicative.py │ ├── test_STDP_record_weights.py │ ├── test_STDP_triplet_additive.py │ ├── test_STDP_with_self_connection.py │ └── test_multiple_stdp_mechs_on_same_neuron.py ├── test_struct_pl │ ├── __init__.py │ ├── test_structural_elimination_to_empty.py │ ├── test_structural_formation_to_full.py │ ├── test_structural_shared.py │ ├── test_structural_with_stdp.py │ └── test_structural_without_stdp.py ├── test_synapses │ ├── __init__.py │ └── test_synapses_excit_vs_inhib.py ├── test_various │ ├── __init__.py │ ├── test_alltoall_with_delay_extension.py │ ├── test_alltoone_with_large_weight.py │ ├── test_bigMultiProcessorSpikeSourcePrint.py │ ├── test_clear.py │ ├── test_delta_models.py │ ├── test_fixed_number_on_two_cores.py │ ├── test_from_file_connector_large.py │ ├── test_get_machine.py │ ├── test_long_delay.py │ ├── test_max_weight.py │ ├── test_models.py │ ├── test_multi_delay.py │ ├── test_multi_step.py │ ├── test_one_pop_lif_example.py │ ├── test_params_set_as_list.py │ ├── test_params_using_random_dists.py │ ├── test_projections_between_runs.py │ ├── test_record_packets_per_timestep.py │ ├── test_recording_later_additions.py │ ├── test_reset_clears_delayed_spike.py │ ├── test_send_multiple_partitions.py │ ├── test_spike_io_multi_run.py │ ├── test_spike_source_array_get_data.py │ ├── test_stochastic_models.py │ ├── test_synaptic_expander.py │ ├── test_synfire_Izhikevich.py │ ├── test_synfire_if_curr_exp_x6.py │ ├── test_tiny_with_reset.py │ └── test_weight_changer.py ├── test_views │ ├── __init__.py │ ├── test_views.py │ └── test_views_data.py └── test_without_extra_monitor │ ├── __init__.py │ ├── spynnnaker.cfg │ └── test_simple_script.py ├── test_whole_board └── test_whole_board.py └── unittests ├── .gitignore ├── __init__.py ├── connector_tests ├── __init__.py ├── test_from_list_connector.py └── test_weights_delays_connector.py ├── data ├── __init__.py ├── manual_check.py └── test_simulator_data.py ├── mocks.py ├── model_tests ├── __init__.py ├── neuron │ ├── __init__.py │ ├── synapse_dynamics │ │ ├── __init__.py │ │ └── test_abstract_synapse_dynamics.py │ ├── test_abstract_neuron_impl.py │ ├── test_connection_holder.py │ ├── test_defaults.py │ ├── test_get_max_synapses.py │ ├── test_neuron_recorder.py │ ├── test_spike_source │ │ ├── __init__.py │ │ └── test_spike_source_array_vertex.py │ ├── test_synapse_io.py │ └── test_synaptic_manager.py ├── test_connectors.py └── test_param_holder.py ├── parameters_test.py ├── test_cfg_checker.py ├── test_doc_checker.py ├── test_from_file_connector.py ├── test_import_all.py ├── test_integration_using_virtual_board ├── __init__.py ├── reset.py ├── spynnaker.cfg ├── test.spikes ├── test_SA_neuron_class_no_edge.py ├── test_SSP_neuron_class_no_edge.py ├── test_create_poissons.py ├── test_if_curr_alpha.py ├── test_one_pop_lif_example.py ├── test_params_set_as_list.py ├── test_ssa.py └── test_synfire_Izhikevich.py ├── test_list_standard_models.py ├── test_munich_io_spinnaker_link_protocol.py ├── test_pop_views_assembly ├── __init__.py ├── all_data.sqlite3 ├── make_test_data.py ├── manual_plot_checker.py ├── packets-per-timestep.csv ├── rewiring_data.sqlite3 ├── rewiring_labels.txt ├── spikes.csv ├── test_csv.py ├── test_data_population.py ├── test_getting.py ├── test_idmixin.py ├── test_models.py ├── test_population.py ├── test_record.py ├── test_views.py ├── v.csv └── view_data.sqlite3 ├── test_populations ├── test_population.py └── test_vertex.py ├── test_push_bot_devices.py ├── test_sata_connectors ├── __init__.py ├── spynnaker.cfg ├── test_sata_2_different_boards_no_board_address.py └── test_sata_2_different_boards_valid_board_address.py ├── test_spinnaker_link_connectors ├── __init__.py ├── spynnaker.cfg ├── test_spinnaker_link_2_different_boards_no_board_address.py └── test_spinnaker_link_2_different_boards_valid_board_address.py ├── test_using_virtual_board ├── __init__.py ├── spynnaker.cfg ├── test_celltype.py ├── test_constraint.py ├── test_debug_mode │ ├── __init__.py │ ├── spynnaker.cfg │ └── test_debug.py ├── test_do_not_allow_violate │ └── spynnaker.cfg ├── test_extracting_spikes_when_v_only_set_to_record.py ├── test_extracting_v_when_spikes_only_set_to_record.py ├── test_failed_state.py ├── test_from_file_connector.py ├── test_from_list_connector.py ├── test_index_based_probabliity_connector.py ├── test_max_cores.py ├── test_multiple_stdp_mechs_on_same_neuron.py ├── test_none_defaults │ ├── spynnaker.cfg │ └── test_simple.py ├── test_one_to_one_connector.py ├── test_properties_of_projection.py ├── test_reset_add_pop.py ├── test_set_record.py ├── test_synfire_extracting_spikes_when_nothing_set_to_recorded.py └── test_synfire_extracting_v_when_nothing_set_to_recorded.py ├── test_version.py ├── test_virtual_board_no_vertices_supported ├── __init__.py ├── spynnaker.cfg └── test.py └── utilities_tests ├── __init__.py ├── recorder.sqlite3 ├── spinnaker.cfg └── test_utility_calls.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add_prs_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.github/workflows/add_prs_to_project.yml -------------------------------------------------------------------------------- /.github/workflows/c_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.github/workflows/c_actions.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/python_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.github/workflows/python_actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylint_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.pylint_dict.txt -------------------------------------------------------------------------------- /.ratexcludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.ratexcludes -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /2DNeuronsAndKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/2DNeuronsAndKeys.png -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/LICENSE_POLICY.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/README.md -------------------------------------------------------------------------------- /RowsIn1DAnd2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/RowsIn1DAnd2D.png -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/doc_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/doc_requirements.txt -------------------------------------------------------------------------------- /doc/global/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/global/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/global/index.html -------------------------------------------------------------------------------- /doc/global/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/global/python/index.html -------------------------------------------------------------------------------- /doc/global/spinnaker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/global/spinnaker.css -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/source/.gitignore -------------------------------------------------------------------------------- /doc/source/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/source/modules.rst -------------------------------------------------------------------------------- /doc/unfiltered-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/doc/unfiltered-files.txt -------------------------------------------------------------------------------- /import_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/import_hook.py -------------------------------------------------------------------------------- /interdimensional_compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/interdimensional_compatibility.md -------------------------------------------------------------------------------- /mypy.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/mypy.bash -------------------------------------------------------------------------------- /mypyd.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/mypyd.bash -------------------------------------------------------------------------------- /neural_modelling/.common_template.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/.common_template.tag -------------------------------------------------------------------------------- /neural_modelling/.fec_template.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/.fec_template.tag -------------------------------------------------------------------------------- /neural_modelling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/.gitignore -------------------------------------------------------------------------------- /neural_modelling/.sllt_template.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/.sllt_template.tag -------------------------------------------------------------------------------- /neural_modelling/Doc/doxygen_html_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/Doc/doxygen_html_style.css -------------------------------------------------------------------------------- /neural_modelling/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/Doxyfile -------------------------------------------------------------------------------- /neural_modelling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/Makefile -------------------------------------------------------------------------------- /neural_modelling/diagrams/spynnaker_c_code_flow.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/diagrams/spynnaker_c_code_flow.dia -------------------------------------------------------------------------------- /neural_modelling/diagrams/spynnaker_c_code_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/diagrams/spynnaker_c_code_flow.png -------------------------------------------------------------------------------- /neural_modelling/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/mainpage.dox -------------------------------------------------------------------------------- /neural_modelling/make/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/make/funcs.mk -------------------------------------------------------------------------------- /neural_modelling/make/local_only_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/make/local_only_build.mk -------------------------------------------------------------------------------- /neural_modelling/make/neural_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/make/neural_build.mk -------------------------------------------------------------------------------- /neural_modelling/make/neural_support.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/make/neural_support.mk -------------------------------------------------------------------------------- /neural_modelling/make/neuron_only_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/make/neuron_only_build.mk -------------------------------------------------------------------------------- /neural_modelling/make/synapse_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/make/synapse_build.mk -------------------------------------------------------------------------------- /neural_modelling/makefiles/delay_extension/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/delay_extension/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/local_only_combined/IF_curr_exp_conv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/local_only_combined/IF_curr_exp_conv/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/local_only_combined/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/local_only_combined/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/local_only_combined/local_only.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/local_only_combined/local_only.mk -------------------------------------------------------------------------------- /neural_modelling/makefiles/neural_support.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neural_support.mk -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_cond_exp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_cond_exp/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_cond_exp_stoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_cond_exp_stoc/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_curr_alpha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_curr_alpha/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_curr_delta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_curr_delta/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_curr_delta_ca2_adaptive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_curr_delta_ca2_adaptive/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_curr_delta_fixed_prob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_curr_delta_fixed_prob/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_curr_exp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_curr_exp/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_curr_exp_ca2_adaptive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_curr_exp_ca2_adaptive/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_curr_exp_dual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_curr_exp_dual/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_curr_exp_sEMD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_curr_exp_sEMD/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_curr_exp_weight_change/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_curr_exp_weight_change/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IF_trunc_delta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IF_trunc_delta/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IZK_cond_exp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IZK_cond_exp/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IZK_cond_exp_dual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IZK_cond_exp_dual/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/IZK_curr_exp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/IZK_curr_exp/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/external_device_lif_control/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/external_device_lif_control/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/neural_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/neural_build.mk -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/stoc_exp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/stoc_exp/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/stoc_exp_stable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/stoc_exp_stable/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron/stoc_sigma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron/stoc_sigma/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IF_cond_exp_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IF_cond_exp_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IF_cond_exp_stoc_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IF_cond_exp_stoc_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IF_curr_alpha_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IF_curr_alpha_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IF_curr_delta_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IF_curr_delta_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IF_curr_exp_dual_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IF_curr_exp_dual_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IF_curr_exp_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IF_curr_exp_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IF_curr_exp_sEMD_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IF_curr_exp_sEMD_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IZK_cond_exp_dual_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IZK_cond_exp_dual_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IZK_cond_exp_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IZK_cond_exp_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/IZK_curr_exp_neuron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/IZK_curr_exp_neuron/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/neuron_only/neuron_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/neuron_only/neuron_build.mk -------------------------------------------------------------------------------- /neural_modelling/makefiles/robot_motor_control/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/robot_motor_control/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/spike_source/poisson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/spike_source/poisson/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/synapse_expander/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/synapse_expander/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/synapse_expander/neuron_expander.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/synapse_expander/neuron_expander.mk -------------------------------------------------------------------------------- /neural_modelling/makefiles/synapse_expander/synapse_expander.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/synapse_expander/synapse_expander.mk -------------------------------------------------------------------------------- /neural_modelling/makefiles/synapse_only/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/synapse_only/Makefile -------------------------------------------------------------------------------- /neural_modelling/makefiles/synapse_only/synapse_build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/synapse_only/synapse_build.mk -------------------------------------------------------------------------------- /neural_modelling/makefiles/synapse_only/synapses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/makefiles/synapse_only/synapses/Makefile -------------------------------------------------------------------------------- /neural_modelling/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/setup.bash -------------------------------------------------------------------------------- /neural_modelling/src/common/in_spikes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/common/in_spikes.h -------------------------------------------------------------------------------- /neural_modelling/src/common/maths-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/common/maths-util.h -------------------------------------------------------------------------------- /neural_modelling/src/common/munich_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/common/munich_protocol.h -------------------------------------------------------------------------------- /neural_modelling/src/common/neuron-typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/common/neuron-typedefs.h -------------------------------------------------------------------------------- /neural_modelling/src/common/send_mc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/common/send_mc.h -------------------------------------------------------------------------------- /neural_modelling/src/delay_extension/delay_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/delay_extension/delay_extension.c -------------------------------------------------------------------------------- /neural_modelling/src/delay_extension/delay_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/delay_extension/delay_extension.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/additional_inputs/additional_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/additional_inputs/additional_input.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/additional_inputs/additional_input_none_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/additional_inputs/additional_input_none_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/c_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/c_main.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/c_main_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/c_main_common.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/c_main_local_only.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/c_main_local_only.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/c_main_neuron_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/c_main_neuron_common.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/c_main_neurons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/c_main_neurons.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/c_main_synapse_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/c_main_synapse_common.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/c_main_synapses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/c_main_synapses.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_ac.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_ac_only_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_ac_only_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_dc.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_dc_only_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_dc_only_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_noisy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_noisy.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_noisy_only_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_noisy_only_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_step.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_step_only_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_step_only_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/current_sources/current_source_stepnoisy_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/current_sources/current_source_stepnoisy_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/decay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/decay.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/dma_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/dma_common.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/implementations/neuron_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/implementations/neuron_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/implementations/neuron_impl_external_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/implementations/neuron_impl_external_devices.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/implementations/neuron_impl_standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/implementations/neuron_impl_standard.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/implementations/neuron_impl_stoc_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/implementations/neuron_impl_stoc_exp.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/implementations/neuron_impl_stoc_exp_stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/implementations/neuron_impl_stoc_exp_stable.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/implementations/neuron_impl_stoc_sigma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/implementations/neuron_impl_stoc_sigma.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/implementations/stoc_exp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/implementations/stoc_exp_common.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/input_types/input_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/input_types/input_type.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/input_types/input_type_conductance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/input_types/input_type_conductance.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/input_types/input_type_current.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/input_types/input_type_current.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/input_types/input_type_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/input_types/input_type_delta.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/input_types/input_type_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/input_types/input_type_none.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/local_only.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/local_only.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/local_only.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/local_only.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/local_only/local_only_2d_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/local_only/local_only_2d_common.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/local_only/local_only_conv_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/local_only/local_only_conv_impl.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/local_only/local_only_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/local_only/local_only_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/local_only/local_only_pool_dense_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/local_only/local_only_pool_dense_impl.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/models/neuron_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/models/neuron_model.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/models/neuron_model_if_trunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/models/neuron_model_if_trunc.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/models/neuron_model_izh_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/models/neuron_model_izh_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/models/neuron_model_lif_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/models/neuron_model_lif_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/neuron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/neuron.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/neuron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/neuron.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/neuron_recording.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/neuron_recording.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/stdp/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/stdp/maths.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/stdp/post_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/stdp/post_events.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/stdp/post_events_with_da.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/stdp/post_events_with_da.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/stdp/stdp_typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/stdp/stdp_typedefs.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/stdp/synapse_dynamics_stdp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/stdp/synapse_dynamics_stdp_common.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/stdp/synapse_dynamics_stdp_mad_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/stdp/synapse_dynamics_stdp_mad_impl.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/stdp/timing_dependence/random_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/stdp/timing_dependence/random_util.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/stdp/timing_dependence/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/stdp/timing_dependence/timing.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/stdp/weight_dependence/weight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/stdp/weight_dependence/weight.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/synapse_dynamics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/synapse_dynamics.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/synapse_dynamics_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/synapse_dynamics_remote.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/plasticity/synapse_dynamics_static_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/plasticity/synapse_dynamics_static_impl.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/population_table/population_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/population_table/population_table.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/profile_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/profile_tags.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/regions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/regions.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/send_spike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/send_spike.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/spike_processing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/spike_processing.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/spike_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/spike_processing.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/spike_processing_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/spike_processing_fast.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/spike_processing_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/spike_processing_fast.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/structural_plasticity/synaptogenesis_dynamics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/structural_plasticity/synaptogenesis_dynamics.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/synapse_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/synapse_row.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/synapse_types/exp_synapse_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/synapse_types/exp_synapse_utils.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/synapse_types/synapse_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/synapse_types/synapse_types.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/synapse_types/synapse_types_alpha_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/synapse_types/synapse_types_alpha_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/synapse_types/synapse_types_delta_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/synapse_types/synapse_types_delta_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/synapse_types/synapse_types_exponential_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/synapse_types/synapse_types_exponential_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/synapse_types/synapse_types_semd_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/synapse_types/synapse_types_semd_impl.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/synapses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/synapses.c -------------------------------------------------------------------------------- /neural_modelling/src/neuron/synapses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/synapses.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/threshold_types/threshold_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/threshold_types/threshold_type.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/threshold_types/threshold_type_fixed_prob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/threshold_types/threshold_type_fixed_prob.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/threshold_types/threshold_type_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/threshold_types/threshold_type_none.h -------------------------------------------------------------------------------- /neural_modelling/src/neuron/threshold_types/threshold_type_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/neuron/threshold_types/threshold_type_static.h -------------------------------------------------------------------------------- /neural_modelling/src/robot_motor_control/robot_motor_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/robot_motor_control/robot_motor_control.c -------------------------------------------------------------------------------- /neural_modelling/src/spike_source/poisson/profile_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/spike_source/poisson/profile_tags.h -------------------------------------------------------------------------------- /neural_modelling/src/spike_source/poisson/spike_source_poisson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/spike_source/poisson/spike_source_poisson.c -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/bit_field_expander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/bit_field_expander.h -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/common_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/common_kernel.c -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/common_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/common_kernel.h -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/common_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/common_mem.h -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/connection_generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/connection_generator.c -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/connection_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/connection_generator.h -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/generator_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/generator_types.h -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/matrix_generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/matrix_generator.c -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/matrix_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/matrix_generator.h -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/neuron_expander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/neuron_expander.c -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/param_generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/param_generator.c -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/param_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/param_generator.h -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/rng.c -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/rng.h -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/synapse_expander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/synapse_expander.c -------------------------------------------------------------------------------- /neural_modelling/src/synapse_expander/type_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/neural_modelling/src/synapse_expander/type_writers.h -------------------------------------------------------------------------------- /pip_freeze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/pip_freeze.txt -------------------------------------------------------------------------------- /proxy_integration_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/proxy_integration_tests/__init__.py -------------------------------------------------------------------------------- /proxy_integration_tests/test_python_debug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/proxy_integration_tests/test_python_debug/__init__.py -------------------------------------------------------------------------------- /proxy_integration_tests/test_python_debug/check_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/proxy_integration_tests/test_python_debug/check_debug.py -------------------------------------------------------------------------------- /proxy_integration_tests/test_python_debug/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/proxy_integration_tests/test_python_debug/spynnaker.cfg -------------------------------------------------------------------------------- /proxy_integration_tests/test_python_debug/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/proxy_integration_tests/test_python_debug/test_debug.py -------------------------------------------------------------------------------- /pylint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/pylint.bash -------------------------------------------------------------------------------- /pynn9_neo5_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/pynn9_neo5_changes.md -------------------------------------------------------------------------------- /pypi_to_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/pypi_to_import -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/setup.py -------------------------------------------------------------------------------- /spynnaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/__init__.py -------------------------------------------------------------------------------- /spynnaker/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/_version.py -------------------------------------------------------------------------------- /spynnaker/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/py.typed -------------------------------------------------------------------------------- /spynnaker/pyNN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/_version.py -------------------------------------------------------------------------------- /spynnaker/pyNN/config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/config_setup.py -------------------------------------------------------------------------------- /spynnaker/pyNN/connections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/connections/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/connections/ethernet_command_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/connections/ethernet_command_connection.py -------------------------------------------------------------------------------- /spynnaker/pyNN/connections/ethernet_control_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/connections/ethernet_control_connection.py -------------------------------------------------------------------------------- /spynnaker/pyNN/connections/spif_live_spikes_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/connections/spif_live_spikes_connection.py -------------------------------------------------------------------------------- /spynnaker/pyNN/connections/spynnaker_live_spikes_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/connections/spynnaker_live_spikes_connection.py -------------------------------------------------------------------------------- /spynnaker/pyNN/connections/spynnaker_poisson_control_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/connections/spynnaker_poisson_control_connection.py -------------------------------------------------------------------------------- /spynnaker/pyNN/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/data/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/data/spynnaker_data_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/data/spynnaker_data_view.py -------------------------------------------------------------------------------- /spynnaker/pyNN/data/spynnaker_data_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/data/spynnaker_data_writer.py -------------------------------------------------------------------------------- /spynnaker/pyNN/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/exceptions.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/abstract_ethernet_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/abstract_ethernet_controller.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/abstract_ethernet_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/abstract_ethernet_sensor.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/abstract_ethernet_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/abstract_ethernet_translator.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/arbitrary_fpga_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/arbitrary_fpga_device.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/external_device_lif_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/external_device_lif_control.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/external_device_lif_control_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/external_device_lif_control_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/icub_retina_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/icub_retina_device.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/machine_munich_motor_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/machine_munich_motor_device.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/munich_spinnaker_link_motor_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/munich_spinnaker_link_motor_device.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/push_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/push_bot/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/push_bot/control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/push_bot/control/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/push_bot/ethernet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/push_bot/ethernet/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/push_bot/ethernet/push_bot_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/push_bot/ethernet/push_bot_device.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/push_bot/parameters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/push_bot/parameters/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/push_bot/parameters/push_bot_laser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/push_bot/parameters/push_bot_laser.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/push_bot/parameters/push_bot_led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/push_bot/parameters/push_bot_led.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/push_bot/parameters/push_bot_motor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/push_bot/parameters/push_bot_motor.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/push_bot/spinnaker_link/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/push_bot/spinnaker_link/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/spif_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/spif_devices.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/spif_input_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/spif_input_device.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/spif_output_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/spif_output_device.py -------------------------------------------------------------------------------- /spynnaker/pyNN/external_devices_models/spif_retina_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/external_devices_models/spif_retina_device.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/connection_holder_finisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/connection_holder_finisher.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/delay_support_adder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/delay_support_adder.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/neuron_expander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/neuron_expander.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/redundant_packet_count_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/redundant_packet_count_report.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/splitter_components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/splitter_components/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/splitter_components/splitter_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/splitter_components/splitter_utils.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/spynnaker_connection_holder_generations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/spynnaker_connection_holder_generations.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/spynnaker_synaptic_matrix_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/spynnaker_synaptic_matrix_report.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_algorithms/synapse_expander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_algorithms/synapse_expander.py -------------------------------------------------------------------------------- /spynnaker/pyNN/extra_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/extra_models/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/model_binaries/.gitignore: -------------------------------------------------------------------------------- 1 | *.aplx 2 | *.dict -------------------------------------------------------------------------------- /spynnaker/pyNN/model_binaries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/model_binaries/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/abstract_accepts_incoming_synapses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/abstract_accepts_incoming_synapses.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/abstract_has_delay_stages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/abstract_has_delay_stages.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/abstract_max_spikes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/abstract_max_spikes.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/abstract_neuron_expandable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/abstract_neuron_expandable.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/abstract_synapse_expandable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/abstract_synapse_expandable.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/coloured_application_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/coloured_application_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/has_shape_key_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/has_shape_key_fields.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/has_synapses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/has_synapses.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/receives_synaptic_inputs_over_sdram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/receives_synaptic_inputs_over_sdram.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/sends_synaptic_inputs_over_sdram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/sends_synaptic_inputs_over_sdram.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_models/supports_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_models/supports_structure.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/abstract_pynn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/abstract_pynn_model.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/eieio_spike_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/eieio_spike_recorder.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/local_only_2d_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/local_only_2d_common.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/multi_spike_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/multi_spike_recorder.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/neuron_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/neuron_recorder.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/param_generator_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/param_generator_data.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/parameter_holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/parameter_holder.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/population_application_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/population_application_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/recording_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/recording_utils.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/common/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/common/types.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/current_sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/current_sources/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/current_sources/abstract_current_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/current_sources/abstract_current_source.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/current_sources/ac_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/current_sources/ac_source.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/current_sources/dc_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/current_sources/dc_source.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/current_sources/noisy_current_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/current_sources/noisy_current_source.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/current_sources/step_current_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/current_sources/step_current_source.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/defaults.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/abstract_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/abstract_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/all_but_me_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/all_but_me_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/all_to_all_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/all_to_all_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/array_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/array_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/convolution_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/convolution_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/csa_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/csa_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/from_file_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/from_file_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/from_list_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/from_list_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/kernel_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/kernel_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/multapse_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/multapse_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/one_to_one_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/one_to_one_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/pool_dense_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/pool_dense_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/connectors/small_world_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/connectors/small_world_connector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/delay_afferent_application_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/delay_afferent_application_edge.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/delayed_application_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/delayed_application_edge.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/projection_application_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/projection_application_edge.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neural_projections/synapse_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neural_projections/synapse_information.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/abstract_pynn_neuron_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/abstract_pynn_neuron_model.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/abstract_pynn_neuron_model_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/abstract_pynn_neuron_model_standard.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/additional_inputs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/additional_inputs/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/additional_inputs/abstract_additional_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/additional_inputs/abstract_additional_input.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/eif_cond_alpha_isfa_ista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/eif_cond_alpha_isfa_ista.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/hh_cond_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/hh_cond_exp.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_cond_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_cond_alpha.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_cond_exp_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_cond_exp_base.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_cond_exp_stoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_cond_exp_stoc.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_curr_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_curr_alpha.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_curr_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_curr_delta.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_curr_delta_ca2_adaptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_curr_delta_ca2_adaptive.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_curr_delta_fixed_prob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_curr_delta_fixed_prob.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_curr_dual_exp_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_curr_dual_exp_base.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_curr_exp_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_curr_exp_base.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_curr_exp_ca2_adaptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_curr_exp_ca2_adaptive.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_curr_exp_semd_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_curr_exp_semd_base.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_facets_hardware1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_facets_hardware1.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/if_trunc_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/if_trunc_delta.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/izk_cond_dual_exp_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/izk_cond_dual_exp_base.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/izk_cond_exp_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/izk_cond_exp_base.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/izk_curr_exp_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/izk_curr_exp_base.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/stoc_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/stoc_exp.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/stoc_exp_stable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/stoc_exp_stable.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/builds/stoc_sigma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/builds/stoc_sigma.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/connection_holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/connection_holder.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/generator_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/generator_data.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/implementations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/implementations/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/implementations/abstract_neuron_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/implementations/abstract_neuron_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/implementations/neuron_impl_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/implementations/neuron_impl_standard.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/implementations/neuron_impl_stoc_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/implementations/neuron_impl_stoc_exp.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/implementations/neuron_impl_stoc_exp_stable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/implementations/neuron_impl_stoc_exp_stable.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/implementations/neuron_impl_stoc_sigma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/implementations/neuron_impl_stoc_sigma.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/input_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/input_types/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/input_types/abstract_input_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/input_types/abstract_input_type.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/input_types/input_type_conductance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/input_types/input_type_conductance.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/input_types/input_type_current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/input_types/input_type_current.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/input_types/input_type_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/input_types/input_type_delta.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/local_only/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/local_only/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/local_only/abstract_local_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/local_only/abstract_local_only.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/local_only/local_only_convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/local_only/local_only_convolution.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/local_only/local_only_pool_dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/local_only/local_only_pool_dense.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/master_pop_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/master_pop_table.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/neuron_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/neuron_data.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/neuron_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/neuron_models/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/neuron_models/neuron_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/neuron_models/neuron_model.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/neuron_models/neuron_model_if_trunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/neuron_models/neuron_model_if_trunc.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/neuron_models/neuron_model_izh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/neuron_models/neuron_model_izh.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/plasticity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/plasticity/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/plasticity/stdp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/plasticity/stdp/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/plasticity/stdp/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/plasticity/stdp/common.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/plasticity/stdp/synapse_structure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/plasticity/stdp/synapse_structure/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/plasticity/stdp/timing_dependence/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/plasticity/stdp/timing_dependence/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/plasticity/stdp/weight_dependence/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/plasticity/stdp/weight_dependence/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_machine_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_machine_common.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_machine_neurons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_machine_neurons.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_machine_synapses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_machine_synapses.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_machine_synapses_provenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_machine_synapses_provenance.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_machine_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_machine_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_neurons_machine_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_neurons_machine_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_synapses_machine_vertex_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_synapses_machine_vertex_common.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_synapses_machine_vertex_lead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_synapses_machine_vertex_lead.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_synapses_machine_vertex_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_synapses_machine_vertex_shared.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/population_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/population_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/structural_plasticity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/structural_plasticity/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_dynamics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_dynamics/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_dynamics/abstract_synapse_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_dynamics/abstract_synapse_dynamics.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_dynamics/synapse_dynamics_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_dynamics/synapse_dynamics_static.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_dynamics/synapse_dynamics_stdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_dynamics/synapse_dynamics_stdp.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_dynamics/synapse_dynamics_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_dynamics/synapse_dynamics_utils.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_dynamics/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_dynamics/types.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_io.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_types/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_types/abstract_synapse_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_types/abstract_synapse_type.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_types/synapse_type_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_types/synapse_type_alpha.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_types/synapse_type_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_types/synapse_type_delta.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_types/synapse_type_dual_exponential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_types/synapse_type_dual_exponential.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_types/synapse_type_exponential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_types/synapse_type_exponential.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synapse_types/synapse_type_semd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synapse_types/synapse_type_semd.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synaptic_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synaptic_matrices.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/synaptic_matrix_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/synaptic_matrix_app.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/threshold_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/threshold_types/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/threshold_types/abstract_threshold_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/threshold_types/abstract_threshold_type.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/threshold_types/threshold_type_fixed_prob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/threshold_types/threshold_type_fixed_prob.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/neuron/threshold_types/threshold_type_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/neuron/threshold_types/threshold_type_static.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/populations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/populations/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/populations/assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/populations/assembly.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/populations/population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/populations/population.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/populations/population_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/populations/population_base.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/populations/population_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/populations/population_view.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/projection.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/recorder.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/spike_source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/spike_source/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/spike_source/spike_source_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/spike_source/spike_source_array.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/spike_source/spike_source_array_machine_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/spike_source/spike_source_array_machine_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/spike_source/spike_source_array_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/spike_source/spike_source_array_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/spike_source/spike_source_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/spike_source/spike_source_from_file.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/spike_source/spike_source_poisson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/spike_source/spike_source_poisson.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/spike_source/spike_source_poisson_machine_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/spike_source/spike_source_poisson_machine_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/spike_source/spike_source_poisson_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/spike_source/spike_source_poisson_variable.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/spike_source/spike_source_poisson_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/spike_source/spike_source_poisson_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/utility_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/utility_models/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/utility_models/delays/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/utility_models/delays/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/utility_models/delays/delay_extension_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/utility_models/delays/delay_extension_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/utility_models/spike_injector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/utility_models/spike_injector/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/utility_models/spike_injector/spike_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/utility_models/spike_injector/spike_injector.py -------------------------------------------------------------------------------- /spynnaker/pyNN/models/utility_models/spike_injector/spike_injector_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/models/utility_models/spike_injector/spike_injector_vertex.py -------------------------------------------------------------------------------- /spynnaker/pyNN/protocols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/protocols/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/protocols/munich_io_ethernet_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/protocols/munich_io_ethernet_protocol.py -------------------------------------------------------------------------------- /spynnaker/pyNN/protocols/munich_io_spinnaker_link_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/protocols/munich_io_spinnaker_link_protocol.py -------------------------------------------------------------------------------- /spynnaker/pyNN/random_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/random_distribution.py -------------------------------------------------------------------------------- /spynnaker/pyNN/setup_pynn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/setup_pynn.py -------------------------------------------------------------------------------- /spynnaker/pyNN/spinnaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/spinnaker.py -------------------------------------------------------------------------------- /spynnaker/pyNN/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/spynnaker.cfg -------------------------------------------------------------------------------- /spynnaker/pyNN/spynnaker_external_device_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/spynnaker_external_device_plugin_manager.py -------------------------------------------------------------------------------- /spynnaker/pyNN/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/types.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/bit_field_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/bit_field_utilities.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/buffer_data_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/buffer_data_type.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/constants.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/data_population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/data_population.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/db.sql -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/neo_buffer_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/neo_buffer_database.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/neo_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/neo_compare.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/neo_convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/neo_convertor.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/neo_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/neo_csv.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/abstract_random_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/abstract_random_stats.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_binomial_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_binomial_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_exponential_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_exponential_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_gamma_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_gamma_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_log_normal_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_log_normal_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_normal_clipped_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_normal_clipped_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_normal_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_normal_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_poisson_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_poisson_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_randint_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_randint_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_scipy_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_scipy_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_uniform_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_uniform_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/random_stats/random_stats_vonmises_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/random_stats/random_stats_vonmises_impl.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/ranged/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/ranged/__init__.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/ranged/spynnaker_ranged_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/ranged/spynnaker_ranged_list.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/running_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/running_stats.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/struct.py -------------------------------------------------------------------------------- /spynnaker/pyNN/utilities/utility_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/pyNN/utilities/utility_calls.py -------------------------------------------------------------------------------- /spynnaker/spike_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/spike_checker.py -------------------------------------------------------------------------------- /spynnaker/spynnaker_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker/spynnaker_plotting.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/.gitignore: -------------------------------------------------------------------------------- 1 | /.pytest_cache/ 2 | -------------------------------------------------------------------------------- /spynnaker_integration_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/conftest.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/scripts/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/scripts/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/scripts/checker.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/scripts/pattern_spiker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/scripts/pattern_spiker.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/scripts/synfire_npop_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/scripts/synfire_npop_run.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/scripts/synfire_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/scripts/synfire_runner.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_0_1_time_steps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_0_1_time_steps/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_0_1_time_steps/test_allow_violate/spynnaker.cfg: -------------------------------------------------------------------------------- 1 | [Machine] 2 | time_scale_factor = 1 3 | -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_auto_pause_and_resume_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_auto_pause_and_resume_tests/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_big_connection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_big_connection/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_big_connection/test_big_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_big_connection/test_big_connection.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_big_connection/test_java_simple/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_big_connection/test_java_simple/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/test_all_but_me_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/test_all_but_me_connector.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/test_all_to_all_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/test_all_to_all_connector.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/test_array_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/test_array_connector.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/test_connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/test_connectors.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/test_csa_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/test_csa_connector.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/test_fixed_prob_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/test_fixed_prob_connector.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/test_kernel_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/test_kernel_connector.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/test_one_to_one_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/test_one_to_one_connector.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_connectors/test_small_world_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_connectors/test_small_world_connector.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_current_sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_current_sources/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_debug_mode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_debug_mode/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_debug_mode/check_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_debug_mode/check_debug.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_debug_mode/test_java_debug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_debug_mode/test_java_debug/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_debug_mode/test_java_debug/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_debug_mode/test_java_debug/spynnaker.cfg -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_debug_mode/test_java_debug/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_debug_mode/test_java_debug/test_debug.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_debug_mode/test_python_debug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_debug_mode/test_python_debug/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_debug_mode/test_python_debug/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_debug_mode/test_python_debug/spynnaker.cfg -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_debug_mode/test_python_debug/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_debug_mode/test_python_debug/test_debug.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_external_devices/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_external_devices/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_external_devices/test_live_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_external_devices/test_live_sync.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_ignores/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_ignores/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_ignores/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_ignores/spynnaker.cfg -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_ignores/test_ignores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_ignores/test_ignores.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_iobuf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_iobuf/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_iobuf/test_multirun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_iobuf/test_multirun/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_iobuf/test_multirun/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_iobuf/test_multirun/spynnaker.cfg -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_iobuf/test_multirun/test_multirun_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_iobuf/test_multirun/test_multirun_with.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_iobuf/test_only_cores_recorded/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_iobuf/test_only_cores_recorded/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_local_only/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_local_only/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_local_only/test_2d_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_local_only/test_2d_1d.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_local_only/test_overlapping_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_local_only/test_overlapping_network.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_local_only/test_pool_dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_local_only/test_pool_dense.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_local_only/test_pool_dense_odd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_local_only/test_pool_dense_odd.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_local_only/test_pool_dense_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_local_only/test_pool_dense_values.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_many_boards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_many_boards/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_many_boards/many_boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_many_boards/many_boards.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_many_boards/test_java_advanced/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_many_boards/test_java_advanced/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_many_boards/test_java_simple/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_many_boards/test_java_simple/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_many_boards/test_java_simple/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_many_boards/test_java_simple/spynnaker.cfg -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_many_boards/test_python_simple/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_many_boards/test_python_simple/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_blob_recording/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_blob_recording/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/poisson_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/poisson_reset.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_larger_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_larger_run.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_multi_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_multi_extract.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_multi_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_multi_run.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_reset_different.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_reset_different.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_reset_higher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_reset_higher.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_reset_new_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_reset_new_input.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_reset_new_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_reset_new_pop.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_reset_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_reset_run.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_single_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_single_run.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_smaller_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_smaller_run.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_multi_call_examples/test_stdp_random_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_multi_call_examples/test_stdp_random_run.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_no_vertices_functionality/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_no_vertices_functionality/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_onchip_compressor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_onchip_compressor/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_onchip_compressor/many_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_onchip_compressor/many_routes.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_onchip_compressor/one_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_onchip_compressor/one_route.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_onchip_compressor/test_pair/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_onchip_compressor/test_pair/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_onchip_compressor/test_pair/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_onchip_compressor/test_pair/spynnaker.cfg -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/200_17_gsyn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/200_17_gsyn.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/200_17_spikes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/200_17_spikes.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/200_17_v.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/200_17_v.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/20_17_gsyn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/20_17_gsyn.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/20_17_spikes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/20_17_spikes.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/20_17_v.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/20_17_v.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/20_1_gsyn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/20_1_gsyn.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/20_1_spikes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/20_1_spikes.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/20_1_v.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/20_1_v.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/20_7_gsyn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/20_7_gsyn.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/20_7_spikes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/20_7_spikes.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/20_7_v.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/20_7_v.csv -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_param_vertex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_param_vertex/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_power_monitoring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_power_monitoring/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_power_monitoring/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_power_monitoring/spynnaker.cfg -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_power_monitoring/test_power_mon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_power_monitoring/test_power_mon.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_record_sdram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_record_sdram/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_record_sdram/test_record_no_projections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_record_sdram/test_record_no_projections.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_record_sdram_no_extra_mons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_record_sdram_no_extra_mons/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_record_sdram_no_extra_mons/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_record_sdram_no_extra_mons/spynnaker.cfg -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_reuse_connector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_reuse_connector/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_reuse_connector/test_reuse_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_reuse_connector/test_reuse_connector.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_routing_info_allocator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_routing_info_allocator/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_selective_recording/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_selective_recording/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_selective_recording/test_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_selective_recording/test_sampling.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_selective_recording/test_thritytwo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_selective_recording/test_thritytwo.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_spike_source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_spike_source/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_spike_source/test_poisson_spike_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_spike_source/test_poisson_spike_source.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_spike_source/test_spike_source_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_spike_source/test_spike_source_array.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_spike_source/test_variable_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_spike_source/test_variable_rate.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_split_various/test_split_delays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_split_various/test_split_delays.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_split_various/test_split_impossible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_split_various/test_split_impossible.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_split_various/test_split_sdram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_split_various/test_split_sdram.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_split_various/test_split_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_split_various/test_split_simple.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_split_various/test_split_stdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_split_various/test_split_stdp.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_split_various/test_split_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_split_various/test_split_struct.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_split_various/test_split_struct_stdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_split_various/test_split_struct_stdp.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_stdp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_stdp/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_stdp/test_IF_curr_delta_stdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_stdp/test_IF_curr_delta_stdp.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_stdp/test_STDP_nearest_pair_additive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_stdp/test_STDP_nearest_pair_additive.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_stdp/test_STDP_neuromodulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_stdp/test_STDP_neuromodulation.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_stdp/test_STDP_pair_additive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_stdp/test_STDP_pair_additive.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_stdp/test_STDP_pair_multiplicative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_stdp/test_STDP_pair_multiplicative.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_stdp/test_STDP_record_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_stdp/test_STDP_record_weights.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_stdp/test_STDP_triplet_additive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_stdp/test_STDP_triplet_additive.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_stdp/test_STDP_with_self_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_stdp/test_STDP_with_self_connection.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_struct_pl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_struct_pl/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_struct_pl/test_structural_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_struct_pl/test_structural_shared.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_struct_pl/test_structural_with_stdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_struct_pl/test_structural_with_stdp.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_struct_pl/test_structural_without_stdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_struct_pl/test_structural_without_stdp.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_synapses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_synapses/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_synapses/test_synapses_excit_vs_inhib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_synapses/test_synapses_excit_vs_inhib.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_alltoone_with_large_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_alltoone_with_large_weight.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_clear.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_delta_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_delta_models.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_fixed_number_on_two_cores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_fixed_number_on_two_cores.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_from_file_connector_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_from_file_connector_large.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_get_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_get_machine.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_long_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_long_delay.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_max_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_max_weight.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_models.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_multi_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_multi_delay.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_multi_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_multi_step.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_one_pop_lif_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_one_pop_lif_example.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_params_set_as_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_params_set_as_list.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_params_using_random_dists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_params_using_random_dists.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_projections_between_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_projections_between_runs.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_record_packets_per_timestep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_record_packets_per_timestep.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_recording_later_additions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_recording_later_additions.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_send_multiple_partitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_send_multiple_partitions.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_spike_io_multi_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_spike_io_multi_run.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_stochastic_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_stochastic_models.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_synaptic_expander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_synaptic_expander.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_synfire_Izhikevich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_synfire_Izhikevich.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_synfire_if_curr_exp_x6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_synfire_if_curr_exp_x6.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_tiny_with_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_tiny_with_reset.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_various/test_weight_changer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_various/test_weight_changer.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_views/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_views/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_views/test_views.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_views/test_views_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_views/test_views_data.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_without_extra_monitor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_without_extra_monitor/__init__.py -------------------------------------------------------------------------------- /spynnaker_integration_tests/test_without_extra_monitor/spynnnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/spynnaker_integration_tests/test_without_extra_monitor/spynnnaker.cfg -------------------------------------------------------------------------------- /test_whole_board/test_whole_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/test_whole_board/test_whole_board.py -------------------------------------------------------------------------------- /unittests/.gitignore: -------------------------------------------------------------------------------- 1 | test.md -------------------------------------------------------------------------------- /unittests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/__init__.py -------------------------------------------------------------------------------- /unittests/connector_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/connector_tests/__init__.py -------------------------------------------------------------------------------- /unittests/connector_tests/test_from_list_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/connector_tests/test_from_list_connector.py -------------------------------------------------------------------------------- /unittests/connector_tests/test_weights_delays_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/connector_tests/test_weights_delays_connector.py -------------------------------------------------------------------------------- /unittests/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/data/__init__.py -------------------------------------------------------------------------------- /unittests/data/manual_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/data/manual_check.py -------------------------------------------------------------------------------- /unittests/data/test_simulator_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/data/test_simulator_data.py -------------------------------------------------------------------------------- /unittests/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/mocks.py -------------------------------------------------------------------------------- /unittests/model_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/__init__.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/__init__.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/synapse_dynamics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/synapse_dynamics/__init__.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/test_abstract_neuron_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/test_abstract_neuron_impl.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/test_connection_holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/test_connection_holder.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/test_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/test_defaults.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/test_get_max_synapses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/test_get_max_synapses.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/test_neuron_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/test_neuron_recorder.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/test_spike_source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/test_spike_source/__init__.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/test_synapse_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/test_synapse_io.py -------------------------------------------------------------------------------- /unittests/model_tests/neuron/test_synaptic_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/neuron/test_synaptic_manager.py -------------------------------------------------------------------------------- /unittests/model_tests/test_connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/test_connectors.py -------------------------------------------------------------------------------- /unittests/model_tests/test_param_holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/model_tests/test_param_holder.py -------------------------------------------------------------------------------- /unittests/parameters_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/parameters_test.py -------------------------------------------------------------------------------- /unittests/test_cfg_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_cfg_checker.py -------------------------------------------------------------------------------- /unittests/test_doc_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_doc_checker.py -------------------------------------------------------------------------------- /unittests/test_from_file_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_from_file_connector.py -------------------------------------------------------------------------------- /unittests/test_import_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_import_all.py -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/__init__.py -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/reset.py -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/spynnaker.cfg -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/test.spikes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/test.spikes -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/test_create_poissons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/test_create_poissons.py -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/test_if_curr_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/test_if_curr_alpha.py -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/test_one_pop_lif_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/test_one_pop_lif_example.py -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/test_params_set_as_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/test_params_set_as_list.py -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/test_ssa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/test_ssa.py -------------------------------------------------------------------------------- /unittests/test_integration_using_virtual_board/test_synfire_Izhikevich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_integration_using_virtual_board/test_synfire_Izhikevich.py -------------------------------------------------------------------------------- /unittests/test_list_standard_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_list_standard_models.py -------------------------------------------------------------------------------- /unittests/test_munich_io_spinnaker_link_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_munich_io_spinnaker_link_protocol.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/__init__.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/all_data.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/all_data.sqlite3 -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/make_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/make_test_data.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/manual_plot_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/manual_plot_checker.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/packets-per-timestep.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/packets-per-timestep.csv -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/rewiring_data.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/rewiring_data.sqlite3 -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/rewiring_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/rewiring_labels.txt -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/spikes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/spikes.csv -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/test_csv.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/test_data_population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/test_data_population.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/test_getting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/test_getting.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/test_idmixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/test_idmixin.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/test_models.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/test_population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/test_population.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/test_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/test_record.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/test_views.py -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/v.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/v.csv -------------------------------------------------------------------------------- /unittests/test_pop_views_assembly/view_data.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_pop_views_assembly/view_data.sqlite3 -------------------------------------------------------------------------------- /unittests/test_populations/test_population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_populations/test_population.py -------------------------------------------------------------------------------- /unittests/test_populations/test_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_populations/test_vertex.py -------------------------------------------------------------------------------- /unittests/test_push_bot_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_push_bot_devices.py -------------------------------------------------------------------------------- /unittests/test_sata_connectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_sata_connectors/__init__.py -------------------------------------------------------------------------------- /unittests/test_sata_connectors/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_sata_connectors/spynnaker.cfg -------------------------------------------------------------------------------- /unittests/test_spinnaker_link_connectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_spinnaker_link_connectors/__init__.py -------------------------------------------------------------------------------- /unittests/test_spinnaker_link_connectors/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_spinnaker_link_connectors/spynnaker.cfg -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/__init__.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/spynnaker.cfg -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_celltype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_celltype.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_constraint.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_debug_mode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_debug_mode/__init__.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_debug_mode/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_debug_mode/spynnaker.cfg -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_debug_mode/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_debug_mode/test_debug.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_do_not_allow_violate/spynnaker.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_failed_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_failed_state.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_from_file_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_from_file_connector.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_from_list_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_from_list_connector.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_max_cores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_max_cores.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_none_defaults/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_none_defaults/spynnaker.cfg -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_none_defaults/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_none_defaults/test_simple.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_one_to_one_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_one_to_one_connector.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_properties_of_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_properties_of_projection.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_reset_add_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_reset_add_pop.py -------------------------------------------------------------------------------- /unittests/test_using_virtual_board/test_set_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_using_virtual_board/test_set_record.py -------------------------------------------------------------------------------- /unittests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_version.py -------------------------------------------------------------------------------- /unittests/test_virtual_board_no_vertices_supported/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_virtual_board_no_vertices_supported/__init__.py -------------------------------------------------------------------------------- /unittests/test_virtual_board_no_vertices_supported/spynnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_virtual_board_no_vertices_supported/spynnaker.cfg -------------------------------------------------------------------------------- /unittests/test_virtual_board_no_vertices_supported/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/test_virtual_board_no_vertices_supported/test.py -------------------------------------------------------------------------------- /unittests/utilities_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/utilities_tests/__init__.py -------------------------------------------------------------------------------- /unittests/utilities_tests/recorder.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/utilities_tests/recorder.sqlite3 -------------------------------------------------------------------------------- /unittests/utilities_tests/spinnaker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/utilities_tests/spinnaker.cfg -------------------------------------------------------------------------------- /unittests/utilities_tests/test_utility_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpiNNakerManchester/sPyNNaker/HEAD/unittests/utilities_tests/test_utility_calls.py --------------------------------------------------------------------------------