sPyNNaker neural_modelling 7.1.1
Loading...
Searching...
No Matches
Data Structures | Functions
param_generator_exponential.h File Reference

Exponentially distributed random parameter generator implementation. More...

#include <stdfix.h>
#include <spin1_api.h>
#include <stdfix-full-iso.h>
#include <random.h>
#include <synapse_expander/rng.h>
#include <synapse_expander/generator_types.h>

Go to the source code of this file.

Data Structures

struct  param_generator_exponential_params
 The parameters that can be copied in from SDRAM. More...
 
struct  param_generator_exponential
 The data structure to be passed around for this generator. This includes the parameters and an RNG. More...
 

Functions

static void * param_generator_exponential_initialize (void **region)
 How to initialise the exponential RNG parameter generator.
 
static void param_generator_exponential_free (void *generator)
 How to free any data for the exponential RNG parameter generator.
 
static accum param_generator_exponential_generate (void *generator)
 How to generate values with the exponential RNG parameter generator.
 

Detailed Description

Exponentially distributed random parameter generator implementation.

Definition in file param_generator_exponential.h.


Data Structure Documentation

◆ param_generator_exponential_params

struct param_generator_exponential_params

The parameters that can be copied in from SDRAM.

Definition at line 31 of file param_generator_exponential.h.

Data Fields
accum beta

◆ param_generator_exponential

struct param_generator_exponential

The data structure to be passed around for this generator. This includes the parameters and an RNG.

Definition at line 39 of file param_generator_exponential.h.

Data Fields
param_generator_exponential_params params

Function Documentation

◆ param_generator_exponential_initialize()

static void * param_generator_exponential_initialize ( void **  region)
static

How to initialise the exponential RNG parameter generator.

Parameters
[in,out]regionRegion to read setup from. Should be updated to position just after parameters after calling.
Returns
A data item to be passed in to other functions later on

Definition at line 49 of file param_generator_exponential.h.

◆ param_generator_exponential_free()

static void param_generator_exponential_free ( void *  generator)
static

How to free any data for the exponential RNG parameter generator.

Parameters
[in]generatorThe generator to free

Definition at line 67 of file param_generator_exponential.h.

◆ param_generator_exponential_generate()

static accum param_generator_exponential_generate ( void *  generator)
static

How to generate values with the exponential RNG parameter generator.

Parameters
[in]generatorThe generator to use to generate values
Returns
The value generated

Definition at line 76 of file param_generator_exponential.h.