doc/API/html/_error_code_8hpp_source.html
| MNN 1.0 |
ErrorCode.hpp
1 //
2 // ErrorCode.hpp
3 // MNN
4 //
5 // Created by MNN on 2018/09/18.
6 // Copyright © 2018, Alibaba Group Holding Limited
7 //
8
9 #ifndef ErrorCode_h
10 #define ErrorCode_h
11
12 namespace MNN {
15OUT_OF_MEMORY = 1,
16NOT_SUPPORT = 2,
17COMPUTE_SIZE_ERROR = 3,
18NO_EXECUTION = 4,
19
20// User error
21INPUT_DATA_ERROR = 10,
22CALL_BACK_STOP = 11,
23
24// Op Resize Error
25TENSOR_NOT_SUPPORT = 20,
26TENSOR_NEED_DIVIDE = 21,
27 };
28 }
29
30 #endif /* ErrorCode_h */
Definition: ErrorCode.hpp:26
Definition: ErrorCode.hpp:25
Definition: ErrorCode.hpp:18
Definition: ErrorCode.hpp:22
Definition: ErrorCode.hpp:17
Definition: ErrorCode.hpp:15
Definition: AutoTime.hpp:16
Definition: ErrorCode.hpp:16
Definition: ErrorCode.hpp:14
Definition: ErrorCode.hpp:21
ErrorCode
Definition: ErrorCode.hpp:13