Project
Loading...
Searching...
No Matches
GPULogging.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
14
15#ifndef GPULOGGING_H
16#define GPULOGGING_H
17
18#include "GPUCommonDef.h"
19// clang-format off
20#if defined(GPUCA_GPUCODE_DEVICE) && !defined(GPUCA_GPU_DEBUG_PRINT)
21 // Compile-time disable for performance-reasons
22 #define GPUInfo(...)
23 #define GPUImportant(...)
24 #define GPUWarning(...)
25 #define GPUAlarm(...)
26 #define GPUError(...)
27 #define GPUCritical(...)
28 #define GPUFatal(...)
29#elif defined(GPUCA_STANDALONE) && !defined(GPUCA_GPUCODE_DEVICE) && !defined(GPUCA_NO_FMT)
30 #include <cstdio>
31 #include <fmt/printf.h>
32 #define GPUInfo(string, ...) \
33 { \
34 fmt::printf(string "\n", ##__VA_ARGS__); \
35 }
36 #define GPUImportant(...) GPUInfo(__VA_ARGS__)
37 #define GPUWarning(string, ...) \
38 { \
39 fmt::fprintf(stderr, string "\n", ##__VA_ARGS__); \
40 }
41 #define GPUError(...) GPUWarning(__VA_ARGS__)
42 #define GPUCritical(...) GPUWarning(__VA_ARGS__)
43 #define GPUAlarm(...) GPUWarning(__VA_ARGS__)
44 #define GPUFatal(string, ...) \
45 { \
46 fmt::fprintf(stderr, string "\n", ##__VA_ARGS__); \
47 throw std::exception(); \
48 }
49#elif defined(GPUCA_STANDALONE) || defined(GPUCA_GPUCODE_DEVICE)
50 // For standalone / CUDA / HIP, we just use printf, which should be available
51 #include <cstdio>
52 #define GPUInfo(string, ...) \
53 { \
54 printf(string "\n", ##__VA_ARGS__); \
55 }
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__)
62 #else
63 #define GPUWarning(string, ...) \
64 { \
65 fprintf(stderr, string "\n", ##__VA_ARGS__); \
66 }
67 #define GPUAlarm(...) GPUWarning(__VA_ARGS__)
68 #define GPUError(...) GPUWarning(__VA_ARGS__)
69 #define GPUCritical(...) GPUWarning(__VA_ARGS__)
70 #define GPUFatal(string, ...) \
71 { \
72 fprintf(stderr, string "\n", ##__VA_ARGS__); \
73 exit(1); \
74 }
75 #endif
76#elif defined(GPUCA_O2_LIB) || defined(GPUCA_O2_INTERFACE)
77 // Forward to O2 LOGF logginf for O2
78 #include "GPUCommonLogger.h"
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__)
86#endif
87
88// clang-format on
89
90#endif // GPULOGGING_H