Graphitti
A toolkit/software architecture to ease creating high-performance neural network simulators
Loading...
Searching...
No Matches
GPUModel Class Reference
Inheritance diagram for GPUModel:
Collaboration diagram for GPUModel:

Public Member Functions

virtual void setupSim () override
 Set up model state, if anym for a specific simulation run.
 
virtual void finish () override
 Performs any finalization tasks on network following a simulation.
 
virtual void advance () override
 Advances network state one simulation step.
 
virtual void updateConnections () override
 Update the connection of all the Neurons and Synapses of the simulation.
 
virtual void copyGPUtoCPU () override
 Copy GPU Synapse data to CPU.
 
virtual void copyCPUtoGPU () override
 Copy CPU Synapse data to GPU.
 
void printGPUSynapsesPropsModel () const
 Print out SynapseProps on the GPU.
 
void copySynapseIndexMapHostToDevice (EdgeIndexMap &synapseIndexMapHost, int numVertices)
 
- Public Member Functions inherited from Model
 Model ()
 Constructor.
 
virtual ~Model ()=default
 Destructor.
 
ConnectionsgetConnections () const
 Returns reference to Connections.
 
LayoutgetLayout () const
 Returns reference to Layout.
 
RecordergetRecorder () const
 Returns reference to Recorder.
 
virtual void saveResults ()
 Save simulation results to an output destination.
 
template<class Archive >
void serialize (Archive &archive, std::uint32_t const version)
 Cereal serialization method.
 

Protected Member Functions

void allocDeviceStruct (void **allVerticesDevice, void **allEdgesDevice)
 
virtual void deleteDeviceStruct (void **allVerticesDevice, void **allEdgesDevice)
 
virtual void calcSummationPoint ()
 Add psr of all incoming synapses to summation points.
 
- Protected Member Functions inherited from Model
void createAllVertices ()
 Creates all the vertices and generates data for them.
 

Protected Attributes

float * randNoise_d
 Pointer to device random noise array.
 
AllSpikingSynapsesDeviceProperties * allEdgesDevice_
 Synapse structures in device memory.
 
AllSpikingNeuronsDeviceProperties * allVerticesDevice_
 Neuron structure in device memory.
 
- Protected Attributes inherited from Model
unique_ptr< Connectionsconnections_
 
unique_ptr< Layoutlayout_
 
unique_ptr< Recorderrecorder_
 
log4cplus::Logger fileLogger_
 

Friends

class GpuSInputPoisson
 

Detailed Description

Definition at line 74 of file GPUModel.h.

Constructor & Destructor Documentation

◆ GPUModel()

GPUModel::GPUModel ( )

Definition at line 24 of file GPUModel.cpp.

Member Function Documentation

◆ advance()

void GPUModel::advance ( )
overridevirtual

Advances network state one simulation step.

Advance everything in the model one time step. In this case, that means calling all of the kernels that do the "micro step" updating (i.e., NOT the stuff associated with growth).

Implements Model.

Definition at line 136 of file GPUModel.cpp.

◆ allocDeviceStruct()

void GPUModel::allocDeviceStruct ( void ** allVerticesDevice,
void ** allEdgesDevice )
protected

Allocates and initializes memories on CUDA device.

Parameters
[out]allVerticesDeviceMemory location of the pointer to the neurons list on device memory.
[out]allEdgesDeviceMemory location of the pointer to the synapses list on device memory.

Definition at line 33 of file GPUModel.cpp.

◆ calcSummationPoint()

void GPUModel::calcSummationPoint ( )
protectedvirtual

Add psr of all incoming synapses to summation points.

Definition at line 182 of file GPUModel.cpp.

◆ copyCPUtoGPU()

void GPUModel::copyCPUtoGPU ( )
overridevirtual

Copy CPU Synapse data to GPU.

Implements Model.

Definition at line 370 of file GPUModel.cpp.

◆ copyGPUtoCPU()

void GPUModel::copyGPUtoCPU ( )
overridevirtual

Copy GPU Synapse data to CPU.

Implements Model.

Definition at line 363 of file GPUModel.cpp.

◆ copySynapseIndexMapHostToDevice()

void GPUModel::copySynapseIndexMapHostToDevice ( EdgeIndexMap & synapseIndexMapHost,
int numVertices )

Copy EdgeIndexMap in host memory to EdgeIndexMap in device memory.

Parameters
synapseIndexMapHostReference to the EdgeIndexMap in host memory.

Definition at line 266 of file GPUModel.cpp.

◆ deleteDeviceStruct()

void GPUModel::deleteDeviceStruct ( void ** allVerticesDevice,
void ** allEdgesDevice )
protectedvirtual

Copies device memories to host memories and deallocates them.

Parameters
[out]allVerticesDeviceMemory location of the pointer to the neurons list on device memory.
[out]allEdgesDeviceMemory location of the pointer to the synapses list on device memory.

Definition at line 59 of file GPUModel.cpp.

◆ finish()

void GPUModel::finish ( )
overridevirtual

Performs any finalization tasks on network following a simulation.

Implements Model.

Definition at line 121 of file GPUModel.cpp.

◆ printGPUSynapsesPropsModel()

void GPUModel::printGPUSynapsesPropsModel ( ) const

Print out SynapseProps on the GPU.

Definition at line 377 of file GPUModel.cpp.

◆ setupSim()

void GPUModel::setupSim ( )
overridevirtual

Set up model state, if anym for a specific simulation run.

Sets up the Simulation.

Reimplemented from Model.

Definition at line 77 of file GPUModel.cpp.

◆ updateConnections()

void GPUModel::updateConnections ( )
overridevirtual

Update the connection of all the Neurons and Synapses of the simulation.

Modifies connections between neurons based on current state of the network and behavior over the past epoch. Should be called once every epoch.

Implements Model.

Definition at line 195 of file GPUModel.cpp.

Friends And Related Symbol Documentation

◆ GpuSInputPoisson

friend class GpuSInputPoisson
friend

Definition at line 75 of file GPUModel.h.

Member Data Documentation

◆ allEdgesDevice_

AllSpikingSynapsesDeviceProperties* GPUModel::allEdgesDevice_
protected

Synapse structures in device memory.

Definition at line 127 of file GPUModel.h.

◆ allVerticesDevice_

AllSpikingNeuronsDeviceProperties* GPUModel::allVerticesDevice_
protected

Neuron structure in device memory.

Definition at line 130 of file GPUModel.h.

◆ randNoise_d

float* GPUModel::randNoise_d
protected

Pointer to device random noise array.

Definition at line 119 of file GPUModel.h.


The documentation for this class was generated from the following files: