CARLsim  5.0.0
CARLsim: a GPU-accelerated SNN simulator
error_code.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 *
46 * CARLsim available from http://socsci.uci.edu/~jkrichma/CARLsim/
47 * Ver 12/31/2016
48 */
49 
50 #ifndef __ERROR_CODE_H__
51 #define __ERROR_CODE_H__
52 
53 #define NO_KERNEL_ERRORS 0xc00d
54 
55 #define NEW_FIRE_UPDATE_OVERFLOW_ERROR1 0x61
56 #define NEW_FIRE_UPDATE_OVERFLOW_ERROR2 0x62
57 
58 #define STORE_FIRING_ERROR_0 0x54
59 
60 #define ERROR_FIRING_0 0xd0d0
61 #define ERROR_FIRING_1 0xd0d1
62 #define ERROR_FIRING_2 0xd0d2
63 #define ERROR_FIRING_3 0xd0d3
64 
65 #define GLOBAL_STATE_ERROR_0 0xf0f0
66 
67 #define GLOBAL_CONDUCTANCE_ERROR_0 0xfff0
68 #define GLOBAL_CONDUCTANCE_ERROR_1 0xfff1
69 
70 #define STP_ERROR 0xf000
71 
72 #define UPDATE_WEIGHTS_ERROR1 0x80
73 
74 #define CURRENT_UPDATE_ERROR1 0x51
75 #define CURRENT_UPDATE_ERROR2 0x52
76 #define CURRENT_UPDATE_ERROR3 0x53
77 #define CURRENT_UPDATE_ERROR4 0x54
78 
79 #define KERNEL_CURRENT_ERROR0 0x90
80 #define KERNEL_CURRENT_ERROR1 0x91
81 #define KERNEL_CURRENT_ERROR2 0x92
82 
83 #define ICURRENT_UPDATE_ERROR1 0x51
84 #define ICURRENT_UPDATE_ERROR2 0x52
85 #define ICURRENT_UPDATE_ERROR3 0x53
86 #define ICURRENT_UPDATE_ERROR4 0x54
87 #define ICURRENT_UPDATE_ERROR5 0x55
88 
89 #define KERNEL_INIT_ERROR0 0x71
90 #define KERNEL_INIT_ERROR1 0x72
91 
92 #define POISSON_COUNT_ERROR_0 0x99
93 
94 #define UNKNOWN_LOGGER_ERROR 0x8001
95 #define NO_LOGGER_DIR_ERROR 0x8002
96 
97 #define ID_OVERFLOW_ERROR 0x8003
98 
99 #endif