Graphitti
A toolkit/software architecture to ease creating high-performance neural network simulators
|
Classes | |
struct | GrowthParams |
Public Member Functions | |
virtual void | setup () override |
Setup the internal structure of the class (allocate memories and initialize them). | |
virtual void | loadParameters () override |
virtual void | printParameters () const override |
virtual bool | updateConnections (AllVertices &neurons) override |
template<class Archive > | |
void | serialize (Archive &archive) |
Cereal serialization method. | |
void | printRadii () const |
Prints radii. | |
virtual void | updateSynapsesWeights () override |
![]() | |
virtual | ~Connections ()=default |
Destructor. | |
AllEdges & | getEdges () const |
Returns reference to Synapses/Edges. | |
EdgeIndexMap & | getEdgeIndexMap () const |
Returns a reference to the EdgeIndexMap. | |
void | createEdgeIndexMap () |
Calls Synapses to create EdgeIndexMap and stores it as a member variable. | |
virtual void | registerGraphProperties () |
Register edge properties with the GraphManager. | |
template<class Archive > | |
void | serialize (Archive &archive) |
Cereal serialization method. | |
Static Public Member Functions | |
static Connections * | Create () |
Public Attributes | |
GrowthParams | growthParams_ |
structure to keep growth parameters | |
int | radiiSize_ |
radii size | |
CompleteMatrix | W_ |
synapse weight | |
VectorMatrix | radii_ |
neuron radii | |
VectorMatrix | rates_ |
spiking rate | |
CompleteMatrix | delta_ |
distance between connection frontiers | |
CompleteMatrix | area_ |
areas of overlap | |
VectorMatrix | outgrowth_ |
neuron's outgrowth | |
VectorMatrix | deltaR_ |
displacement of neuron radii | |
Additional Inherited Members | |
![]() | |
unique_ptr< AllEdges > | edges_ |
unique_ptr< EdgeIndexMap > | synapseIndexMap_ |
log4cplus::Logger | fileLogger_ |
log4cplus::Logger | edgeLogger_ |
Definition at line 82 of file ConnGrowth.h.
ConnGrowth::ConnGrowth | ( | ) |
Definition at line 52 of file ConnGrowth.cpp.
|
inlinestatic |
Definition at line 88 of file ConnGrowth.h.
|
overridevirtual |
Load member variables from configuration file. Registered to OperationManager as Operations::op::loadParameters
Implements Connections.
Definition at line 87 of file ConnGrowth.cpp.
|
overridevirtual |
Prints out all parameters to logging file. Registered to OperationManager as Operation::printParameters
Implements Connections.
Definition at line 113 of file ConnGrowth.cpp.
void ConnGrowth::printRadii | ( | ) | const |
Prints radii.
Definition at line 325 of file ConnGrowth.cpp.
void ConnGrowth::serialize | ( | Archive & | archive | ) |
Cereal serialization method.
Definition at line 204 of file ConnGrowth.h.
|
overridevirtual |
Setup the internal structure of the class (allocate memories and initialize them).
Setup the internal structure of the class (allocate memories and initialize them).
layout | Layout information of the neural network. |
vertices | The vertex list to search from. |
synapses | The Synapse list to search from. |
Implements Connections.
Definition at line 62 of file ConnGrowth.cpp.
|
overridevirtual |
Update the connections status in every epoch.
neurons | The Neuron list to search from. |
Update the connections status in every epoch.
vertices | The vertex list to search from. |
Reimplemented from Connections.
Definition at line 131 of file ConnGrowth.cpp.
|
overridevirtual |
Update the weights of the Synapses in the simulation. To be clear, iterates through all source and destination neurons and updates their synaptic strengths from the weight matrix. Note: Platform Dependent.
Update the weight of the Synapses in the simulation. To be clear, iterates through all source and destination neurons and updates their synaptic strengths from the weight matrix. Note: Platform Dependent.
Reimplemented from Connections.
Definition at line 243 of file ConnGrowth.cpp.
CompleteMatrix ConnGrowth::area_ |
areas of overlap
Definition at line 192 of file ConnGrowth.h.
CompleteMatrix ConnGrowth::delta_ |
distance between connection frontiers
Definition at line 189 of file ConnGrowth.h.
VectorMatrix ConnGrowth::deltaR_ |
displacement of neuron radii
Definition at line 198 of file ConnGrowth.h.
GrowthParams ConnGrowth::growthParams_ |
structure to keep growth parameters
Definition at line 174 of file ConnGrowth.h.
VectorMatrix ConnGrowth::outgrowth_ |
neuron's outgrowth
Definition at line 195 of file ConnGrowth.h.
VectorMatrix ConnGrowth::radii_ |
neuron radii
Definition at line 183 of file ConnGrowth.h.
int ConnGrowth::radiiSize_ |
radii size
Definition at line 177 of file ConnGrowth.h.
VectorMatrix ConnGrowth::rates_ |
spiking rate
Definition at line 186 of file ConnGrowth.h.
CompleteMatrix ConnGrowth::W_ |
synapse weight
Definition at line 180 of file ConnGrowth.h.