CARLsim  6.1.0
CARLsim: a GPU-accelerated SNN simulator
carlsim_definitions.h
Go to the documentation of this file.
1 /* * Copyright (c) 2016 Regents of the University of California. All rights reserved.
2 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions
5 * are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 *
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * 3. The names of its contributors may not be used to endorse or promote
15 * products derived from this software without specific prior written
16 * permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * *********************************************************************************************** *
31 * CARLsim
32 * created by: (MDR) Micah Richert, (JN) Jayram M. Nageswaran
33 * maintained by:
34 * (MA) Mike Avery <averym@uci.edu>
35 * (MB) Michael Beyeler <mbeyeler@uci.edu>,
36 * (KDC) Kristofor Carlson <kdcarlso@uci.edu>
37 * (TSC) Ting-Shuo Chou <tingshuc@uci.edu>
38 * (HK) Hirak J Kashyap <kashyaph@uci.edu>
39 *
40 * CARLsim v1.0: JM, MDR
41 * CARLsim v2.0/v2.1/v2.2: JM, MDR, MA, MB, KDC
42 * CARLsim3: MB, KDC, TSC
43 * CARLsim4: TSC, HK
44 * CARLsim5: HK, JX, KC
45 * CARLsim6: LN, JX, KC, KW
46 *
47 * CARLsim available from http://socsci.uci.edu/~jkrichma/CARLsim/
48 * Ver 12/31/2016
49 */
50 
51 #ifndef _CARLSIM_DEFINITIONS_H_
52 #define _CARLSIM_DEFINITIONS_H_
53 
54 
55 
57 #define ALL -1
58 #define ANY -1
59 
60 
61 #define SYN_FIXED false
62 #define SYN_PLASTIC true
63 
64 // Bit flags to be used to specify the type of neuron. Future types can be added in the future such as Dopamine, etc.
65 // Yes, they should be bit flags because some neurons release more than one transmitter at a synapse.
66 #define UNKNOWN_NEURON (0)
67 #define POISSON_NEURON (1 << 0)
68 #define TARGET_AMPA (1 << 1)
69 #define TARGET_NMDA (1 << 2)
70 #define TARGET_GABAa (1 << 3)
71 #define TARGET_GABAb (1 << 4)
72 #define TARGET_DA (1 << 5)
73 #define TARGET_5HT (1 << 6) // LN2021 \todo check if following CARLsim legacy, meaning already reserved?
74 #define TARGET_ACH (1 << 7)
75 #define TARGET_NE (1 << 8)
76 
77 #define INHIBITORY_NEURON (TARGET_GABAa | TARGET_GABAb)
78 #define EXCITATORY_NEURON (TARGET_NMDA | TARGET_AMPA)
79 #define DOPAMINERGIC_NEURON (TARGET_DA | EXCITATORY_NEURON) // CARLsim legacy
80 #define SEROTONERGIC_NEURON (TARGET_5HT | EXCITATORY_NEURON) // extension for V6,
81 #define CHOLINERGIC_NEURON (TARGET_ACH | EXCITATORY_NEURON) // naming according to Breedlove, Rosenzweig, Watson
82 #define NORADRENERGIC_NEURON (TARGET_NE | EXCITATORY_NEURON) //
83 #define EXCITATORY_POISSON (EXCITATORY_NEURON | POISSON_NEURON)
84 #define INHIBITORY_POISSON (INHIBITORY_NEURON | POISSON_NEURON)
85 #define IS_INHIBITORY_TYPE(type) (((type) & TARGET_GABAa) || ((type) & TARGET_GABAb))
86 #define IS_EXCITATORY_TYPE(type) (!IS_INHIBITORY_TYPE(type))
87 
88 #define CARLSIM_ERROR(where, what) fprintf(stderr,"\033[31;1m[USER ERROR %s] %s\033[0m\n",where,what)
89 #define CARLSIM_WARN(where, what) fprintf(stderr,"\033[33;1m[USER WARNING %s] %s\033[0m\n",where,what)
90 #define CARLSIM_INFO(where, what) fprintf(stdout,"\033[%s] %s\n",where,what)
91 
92 #define MAX_NUM_CUDA_DEVICES 8
93 
94 // maximum number of compartmental connections allowed per group
95 #define MAX_NUM_COMP_CONN 4
96 
97 
98 
99 //{ LN enforce clean compilation for Windows
100 #if defined(_WIN32)
101 
102 //warning C4244: 'return': conversion from 'double' to 'float', possible loss of data
103 //warning C4244: 'return': conversion from '__int64' to 'long', possible loss of data (compiling source file connection_monitor_core.cpp)
104 #pragma warning(disable:4244)
105 
106 // warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
107 #pragma warning(disable:4267)
108 
109 // warning C4800: 'unsigned int': forcing value to bool 'true' or 'false' (performance warning)
110 #pragma warning(disable:4800)
111 
112 // warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
113 #pragma warning(disable:4996)
114 
115 
116 #endif
117 //}
118 
119 
120 
121 #endif