GeNN  3.3.0
GPU enhanced Neuronal Networks (GeNN)
generateALL.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 //--------------------------------------------------------------------------
22 //--------------------------------------------------------------------------
23 
24 #include "modelSpec.h"
25 
26 #include <string>
27 
28 using namespace std;
29 
30 
31 //--------------------------------------------------------------------------
34 //--------------------------------------------------------------------------
35 
36 void generate_model_runner(const NNmodel &model,
37  const string &path,
38  int localHostID);
39 
40 
41 //--------------------------------------------------------------------------
47 //--------------------------------------------------------------------------
48 
49 #ifndef CPU_ONLY
50 void chooseDevice(NNmodel &model,
51  const string &path,
52  int localHostID);
53 #endif
void generate_model_runner(const NNmodel &model, const string &path, int localHostID)
This function will call the necessary sub-functions to generate the code for simulating a model...
Definition: generateALL.cc:51
void chooseDevice(NNmodel &model, const string &path, int localHostID)
Helper function that prepares data structures and detects the hardware properties to enable the code ...
Definition: generateALL.cc:124
Definition: modelSpec.h:132
Header file that contains the class (struct) definition of neuronModel for defining a neuron model an...