GeNN  3.3.0
GPU enhanced Neuronal Networks (GeNN)
generateCPU.h
Go to the documentation of this file.
1 /*--------------------------------------------------------------------------
2  Author: Thomas Nowotny
3 
4  Institute: Center for Computational Neuroscience and Robotics
5  University of Sussex
6  Falmer, Brighton BN1 9QJ, UK
7 
8  email to: T.Nowotny@sussex.ac.uk
9 
10  initial version: 2010-02-07
11 
12  --------------------------------------------------------------------------*/
13 
14 //--------------------------------------------------------------------------
20 //--------------------------------------------------------------------------
21 
22 #include "modelSpec.h"
23 
24 #include <string>
25 #include <fstream>
26 
27 using namespace std;
28 
29 
30 //--------------------------------------------------------------------------
34 //--------------------------------------------------------------------------
35 
36 void genNeuronFunction(const NNmodel &model,
37  const string &path
38  );
39 
40 
41 //--------------------------------------------------------------------------
45 //--------------------------------------------------------------------------
46 
47 void genSynapseFunction(const NNmodel &model,
48  const string &path
49  );
void genNeuronFunction(const NNmodel &model, const string &path)
Function that generates the code of the function the will simulate all neurons on the CPU...
Definition: generateCPU.cc:194
Definition: modelSpec.h:132
Header file that contains the class (struct) definition of neuronModel for defining a neuron model an...
void genSynapseFunction(const NNmodel &model, const string &path)
Function that generates code that will simulate all synapses of the model on the CPU.
Definition: generateCPU.cc:459