GeNN  1.1
GPU enhanced Neuronal Networks (GeNN)
 All Classes Files Functions Variables Typedefs Macros Pages
VClampGA.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 //--------------------------------------------------------------------------
19 //--------------------------------------------------------------------------
20 
21 #include <cassert>
22 using namespace std;
23 #include "hr_time.cpp"
24 
25 #include "utils.h" // for CHECK_CUDA_ERRORS
26 #include <cuda_runtime.h>
27 #include "HHVClamp.cc"
28 #include "HHVClamp_CODE/runner.cc"
29 #include "../../../lib/include/numlib/randomGen.h"
30 #include "../../../lib/include/numlib/gauss.h"
33 #include "helper.h"
34 
35 //#define DEBUG_PROCREATE
36 #include "GA.cc"
37 
38 #define RAND(Y,X) Y = Y * 1103515245 +12345;X= (unsigned int)(Y >> 16) & 32767
39 
40 // and some global variables
41 double t= 0.0f;
42 unsigned int iT= 0;
Definition: hr_time.h:40
This file contains standard utility functions provide within the NVIDIA CUDA software development too...
randomGauss RG
Definition: VClampGA.h:32
double t
Definition: VClampGA.h:41
This file contains the implementation of the CStopWatch class that provides a simple timing tool base...
randomGen R
Definition: VClampGA.h:31
Class random Gauss encapsulates the methods for generating random neumbers with Gaussian distribution...
Definition: gauss.h:43
Class randomGen which implements the ISAAC random number generator for uniformely distributed random ...
Definition: randomGen.h:38
CStopWatch timer
Definition: VClampGA.h:43
This file contains the model definition of HHVClamp model. It is used in both the GeNN code generatio...
unsigned int iT
Definition: VClampGA.h:42