|
sPyNNaker neural_modelling
7.4.2
|
Master population table implementation that uses binary search. More...
#include "population_table.h"#include <neuron/synapse_row.h>#include <debug.h>#include <stdbool.h>Go to the source code of this file.
Functions | |
| static void | print_master_population_table (void) |
| Prints the master pop table. More... | |
| static void | print_bitfields (uint32_t mp_i, filter_info_t *filters) |
| Print bitfields for debugging. More... | |
| bool | population_table_load_bitfields (filter_region_t *filter_region) |
| Initialise the bitfield filtering system. More... | |
| static bool | population_table_position_in_the_master_pop_array (spike_t spike, uint32_t *position) |
| Get the position in the master population table. More... | |
| bool | population_table_setup (address_t table_address, uint32_t *row_max_n_words, uint32_t *master_pop_table_length, master_population_table_entry **master_pop_table, address_list_entry **address_list) |
| Set up and return the table for outside use. More... | |
API functions | |
| bool | population_table_initialise (address_t table_address, address_t synapse_rows_address, uint32_t *row_max_n_words) |
| Set up the table. More... | |
| bool | population_table_get_first_address (spike_t spike, pop_table_lookup_result_t *result) |
| Get the first row data for the given input spike. More... | |
| bool | population_table_get_next_address (spike_t *spike, pop_table_lookup_result_t *result) |
| Get the next row data for a previously given spike. If no spike has been given, return False. More... | |
Variables | |
| static master_population_table_entry * | master_population_table |
| The master population table. This is sorted. | |
| static uint32_t | master_population_table_length |
| The length of master_population_table. | |
| static address_list_entry * | address_list |
| The array of information that points into the synaptic matrix. | |
| static uint32_t | synaptic_rows_base_address |
| Base address for the synaptic matrix's indirect rows. | |
| static spike_t | last_spike = 0 |
| The last spike received. | |
| static uint32_t | last_colour = 0 |
| The last colour received. | |
| static uint32_t | last_colour_mask = 0 |
| The last colour mask used. | |
| static uint32_t | last_neuron_id = 0 |
| The last neuron id for the key. | |
| static uint16_t | next_item = 0 |
| the index for the next item in the address_list | |
| uint16_t | items_to_go = 0 |
| The number of addresses from the same spike left to process. More... | |
| static bit_field_t * | connectivity_bit_field = NULL |
| The bitfield map. | |
| uint32_t | ghost_pop_table_searches = 0 |
| the number of times a DMA resulted in 0 entries | |
| uint32_t | invalid_master_pop_hits = 0 |
| the number of times packet isnt in the master pop table at all! More... | |
| uint32_t | failed_bit_field_reads = 0 |
| The number of bit fields which were not able to be read in due to DTCM limits. | |
| uint32_t | bit_field_filtered_packets = 0 |
| The number of packets dropped because the bitfield filter says they don't hit anything. | |
Master population table implementation that uses binary search.
Definition in file population_table_binary_search_impl.c.
|
inlinestatic |
Prints the master pop table.
For debugging
Definition at line 75 of file population_table_binary_search_impl.c.
|
inlinestatic |
Print bitfields for debugging.
| [in] | mp_i | The master population table entry index |
| [in] | filters | The bitfields to print |
Definition at line 103 of file population_table_binary_search_impl.c.
| bool population_table_load_bitfields | ( | filter_region_t * | filter_region | ) |
Initialise the bitfield filtering system.
| [in] | filter_region | Where the bitfield configuration is |
Definition at line 118 of file population_table_binary_search_impl.c.
|
inlinestatic |
Get the position in the master population table.
| [in] | spike | The spike received |
| [out] | position | The position found (only if returns true) |
Definition at line 180 of file population_table_binary_search_impl.c.
| bool population_table_setup | ( | address_t | table_address, |
| uint32_t * | row_max_n_words, | ||
| uint32_t * | master_pop_table_length, | ||
| master_population_table_entry ** | master_pop_table, | ||
| address_list_entry ** | address_list | ||
| ) |
Set up and return the table for outside use.
| [in] | table_address | The address of the start of the table data |
| [out] | row_max_n_words | Updated with the maximum length of any row in the table in words |
| [out] | master_pop_table_length | Updated with the length of the table |
| [out] | master_pop_table | Updated with the table entries |
| [out] | address_list | Updated with the address list |
Definition at line 203 of file population_table_binary_search_impl.c.
| bool population_table_initialise | ( | address_t | table_address, |
| address_t | synapse_rows_address, | ||
| uint32_t * | row_max_n_words | ||
| ) |
Set up the table.
| [in] | table_address | The address of the start of the table data |
| [in] | synapse_rows_address | The address of the start of the synapse data |
| [out] | row_max_n_words | Updated with the maximum length of any row in the table in words |
Definition at line 249 of file population_table_binary_search_impl.c.
| bool population_table_get_first_address | ( | spike_t | spike, |
| pop_table_lookup_result_t * | result | ||
| ) |
Get the first row data for the given input spike.
| [in] | spike | The spike received |
| [out] | result | Updated with the lookup details |
Definition at line 263 of file population_table_binary_search_impl.c.
| bool population_table_get_next_address | ( | spike_t * | spike, |
| pop_table_lookup_result_t * | result | ||
| ) |
Get the next row data for a previously given spike. If no spike has been given, return False.
| [out] | spike | The initiating spike |
| [out] | result | Updated with the lookup details |
Definition at line 314 of file population_table_binary_search_impl.c.
| uint16_t items_to_go = 0 |
The number of addresses from the same spike left to process.
The number of relevant items remaining in the address_list NOTE: Exported for speed of check
Definition at line 54 of file population_table_binary_search_impl.c.
| uint32_t invalid_master_pop_hits = 0 |
the number of times packet isnt in the master pop table at all!
the number of times packet isn't in the master pop table at all!
Definition at line 63 of file population_table_binary_search_impl.c.