File indexing completed on 2026-05-27 07:24:05
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #include "detray/utils/logging.hpp"
0011
0012
0013
0014 #if defined(__GNUC__) && !defined(__IN_QUIET_LOG_SECTION__)
0015
0016
0017 #define __IN_QUIET_LOG_SECTION__
0018
0019 #pragma push_macro("DETRAY_VERBOSE_HOST")
0020 #pragma push_macro("DETRAY_VERBOSE_DEVICE")
0021 #pragma push_macro("DETRAY_VERBOSE_HOST_DEVICE")
0022 #pragma push_macro("DETRAY_DEBUG_HOST")
0023 #pragma push_macro("DETRAY_DEBUG_DEVICE")
0024 #pragma push_macro("DETRAY_DEBUG_HOST_DEVICE")
0025
0026 #undef DETRAY_VERBOSE_HOST
0027 #undef DETRAY_VERBOSE_DEVICE
0028 #undef DETRAY_VERBOSE_HOST_DEVICE
0029 #undef DETRAY_DEBUG_HOST
0030 #undef DETRAY_DEBUG_DEVICE
0031 #undef DETRAY_DEBUG_HOST_DEVICE
0032
0033 #define DETRAY_VERBOSE_HOST(x)
0034 #define DETRAY_VERBOSE_DEVICE(x)
0035 #define DETRAY_VERBOSE_HOST_DEVICE(x)
0036 #define DETRAY_DEBUG_HOST(x)
0037 #define DETRAY_DEBUG_DEVICE(x)
0038 #define DETRAY_DEBUG_HOST_DEVICE(x)
0039
0040 #endif