Graphitti
A toolkit/software architecture to ease creating high-performance neural network simulators
|
Classes | |
struct | singleVariableInfo |
Public Member Functions | |
virtual void | init () override |
Initialize data in the newly loadeded xml file. | |
virtual void | term () override |
Terminate process. | |
virtual void | compileHistories () override |
Compile/capture variable history information in every epoch. | |
virtual void | saveSimData () override |
Writes simulation results to an output destination. | |
virtual void | printParameters () override |
virtual void | registerVariable (const string &varName, RecordableBase &recordVar, UpdatedType variableType) override |
Registers a single instance of a class derived from RecordableBase. | |
virtual void | registerVariable (const string &varName, vector< RecordableBase * > &recordVars, UpdatedType variableType) override |
Register a vector of instance of a class derived from RecordableBase. | |
XmlRecorder (const string &fileName) | |
constructor only for unit test | |
const string & | getVariableName (int numIndex) const |
const string & | getDataType (int numIndex) const |
RecordableBase & | getSingleVariable (int numIndex) |
vector< multipleTypes > & | getHistory (int numIndex) |
Accessor method for variablesHistory_ (only included during unit tests) | |
string | getToXML (const string &name, vector< multipleTypes > &singleVariableBuffer_, const string &basicType) |
get an output stream from toXml method (only included during unit tests) | |
![]() |
Static Public Member Functions | |
static Recorder * | Create () |
Protected Member Functions | |
string | toXML (const string &name, vector< multipleTypes > &singleVariableBuffer_, const string &basicType) const |
Retrieves values of a vector of variant and outputs them to a xml file. | |
void | getStarterNeuronMatrix (VectorMatrix &matrix, const vector< bool > &starterMap) |
![]() |
Protected Attributes | |
vector< singleVariableInfo > | variableTable_ |
List of registered variables for recording. | |
ofstream | resultOut_ |
a file stream for xml output | |
![]() | |
string | resultFileName_ |
File path to the file that the results will be printed to. | |
log4cplus::Logger | fileLogger_ |
Loggers used to print to using log4cplus logging macros, prints to Results/Debug/logging.txt. | |
Additional Inherited Members | |
![]() | |
enum | UpdatedType { CONSTANT , DYNAMIC } |
The recorded variable Type/Updated frequency. More... | |
Definition at line 35 of file XmlRecorder.h.
XmlRecorder::XmlRecorder | ( | ) |
Definition at line 19 of file XmlRecorder.cpp.
|
inline |
constructor only for unit test
These methods are intended only for unit tests
Definition at line 81 of file XmlRecorder.h.
|
overridevirtual |
Compile/capture variable history information in every epoch.
Compile history information in every epoch.
Implements Recorder.
Reimplemented in Xml911Recorder.
Definition at line 59 of file XmlRecorder.cpp.
|
inlinestatic |
Definition at line 40 of file XmlRecorder.h.
|
inline |
Accessor method for variable data type (only included during unit tests)
numIndex | The index number in the variable list. |
Definition at line 95 of file XmlRecorder.h.
|
inline |
Accessor method for variablesHistory_ (only included during unit tests)
Definition at line 109 of file XmlRecorder.h.
|
inline |
Accessor method for a single variable address in the variableTable_
numIndex | The index number in the variable list. (only included during unit tests) |
Definition at line 103 of file XmlRecorder.h.
|
protectedvirtual |
Populates Starter neuron matrix based with boolean values based on starterMap state
[in] | matrix | starter neuron matrix |
starterMap | Bool map to reference neuron matrix location from. |
Implements Recorder.
Definition at line 131 of file XmlRecorder.cpp.
|
inline |
get an output stream from toXml method (only included during unit tests)
Definition at line 115 of file XmlRecorder.h.
|
inline |
Accessor method for variable name (only included during unit tests)
numIndex | The index number in the variable list. |
Definition at line 88 of file XmlRecorder.h.
|
overridevirtual |
Initialize data in the newly loadeded xml file.
Create a new xml file and initialize data
[in] | stateOutputFileName | File name to save histories |
Implements Recorder.
Definition at line 31 of file XmlRecorder.cpp.
|
overridevirtual |
Prints out all parameters to logging file. Registered to OperationManager as Operation::printParameters
Implements Recorder.
Reimplemented in Xml911Recorder.
Definition at line 139 of file XmlRecorder.cpp.
|
overridevirtual |
Registers a single instance of a class derived from RecordableBase.
Receives a recorded variable entity from the variable owner class.
Receives a recorded variable entity from the variable owner class Used when the return type from recordable variable is supported by Recorder
varName | Name of the recorded variable. |
recordVar | Reference to the recorded variable. |
variableType | Updated frequency of the recorded variable. |
Registers a single instance of a class derived from RecordableBase.
varName | Name of the recorded variable. |
recordVar | Reference to the recorded variable. |
variableType | Type of the recorded variable. |
Implements Recorder.
Definition at line 153 of file XmlRecorder.cpp.
|
overridevirtual |
Register a vector of instance of a class derived from RecordableBase.
Register a vector of instances of classes derived from RecordableBase.
This method allows the XmlRecorder to store a vector of variables, each represented by an address and a unique variable name. It is typically used to register multiple instances of a class derived from RecordableBase.
varName | The name associated with the registered variables. |
recordVars | A vector of pointers to RecordableBase objects to be registered. |
Implements Recorder.
Definition at line 168 of file XmlRecorder.cpp.
|
overridevirtual |
Writes simulation results to an output destination.
Implements Recorder.
Reimplemented in Xml911Recorder.
Definition at line 72 of file XmlRecorder.cpp.
|
overridevirtual |
|
protected |
Retrieves values of a vector of variant and outputs them to a xml file.
Definition at line 95 of file XmlRecorder.cpp.
|
protected |
a file stream for xml output
Definition at line 169 of file XmlRecorder.h.
|
protected |
List of registered variables for recording.
Definition at line 166 of file XmlRecorder.h.