 |
Project
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
20#if defined(GPUCA_GPUCODE_DEVICE) && !defined(GPUCA_GPU_DEBUG_PRINT)
23 #define GPUImportant(...)
24 #define GPUWarning(...)
27 #define GPUCritical(...)
29#elif defined(GPUCA_STANDALONE) && !defined(GPUCA_GPUCODE_DEVICE) && !defined(GPUCA_NO_FMT)
31 #include <fmt/printf.h>
32 #define GPUInfo(string, ...) \
34 fmt::printf(string "\n", ##__VA_ARGS__); \
36 #define GPUImportant(...) GPUInfo(__VA_ARGS__)
37 #define GPUWarning(string, ...) \
39 fmt::fprintf(stderr, string "\n", ##__VA_ARGS__); \
41 #define GPUError(...) GPUWarning(__VA_ARGS__)
42 #define GPUCritical(...) GPUWarning(__VA_ARGS__)
43 #define GPUAlarm(...) GPUWarning(__VA_ARGS__)
44 #define GPUFatal(string, ...) \
46 fmt::fprintf(stderr, string "\n", ##__VA_ARGS__); \
47 throw std::exception(); \
49#elif defined(GPUCA_STANDALONE) || defined(GPUCA_GPUCODE_DEVICE)
52 #define GPUInfo(string, ...) \
54 printf(string "\n", ##__VA_ARGS__); \
56 #define GPUImportant(...) GPUInfo(__VA_ARGS__)
57 #ifdef GPUCA_GPUCODE_DEVICE
58 #define GPUWarning(...) GPUInfo(__VA_ARGS__)
59 #define GPUAlarm(...) GPUInfo(__VA_ARGS__)
60 #define GPUError(...) GPUInfo(__VA_ARGS__)
61 #define GPUFatal(...) GPUInfo(__VA_ARGS__)
63 #define GPUWarning(string, ...) \
65 fprintf(stderr, string "\n", ##__VA_ARGS__); \
67 #define GPUAlarm(...) GPUWarning(__VA_ARGS__)
68 #define GPUError(...) GPUWarning(__VA_ARGS__)
69 #define GPUCritical(...) GPUWarning(__VA_ARGS__)
70 #define GPUFatal(string, ...) \
72 fprintf(stderr, string "\n", ##__VA_ARGS__); \
76#elif defined(GPUCA_O2_LIB) || defined(GPUCA_O2_INTERFACE)
79 #define GPUInfo(...) LOGF(info, __VA_ARGS__)
80 #define GPUImportant(...) LOGF(info, __VA_ARGS__)
81 #define GPUWarning(...) LOGF(warning, __VA_ARGS__)
82 #define GPUAlarm(...) LOGF(alarm, __VA_ARGS__)
83 #define GPUError(...) LOGF(error, __VA_ARGS__)
84 #define GPUCritical(...) LOGF(critical, __VA_ARGS__)
85 #define GPUFatal(...) LOGF(fatal, __VA_ARGS__)