SWDEV-510186 - Improve logging (#220)

- Print all arguments for logs, this is useful for debug
This commit is contained in:
Kudchadker, Saleel
2025-04-25 08:40:31 -07:00
committed by GitHub
parent 95cdc83eaf
commit ce24936970
2 changed files with 38 additions and 11 deletions
+2
View File
@@ -219,6 +219,8 @@ inline void warning(const char* msg) { amd::report_warning(msg); }
} \
} while (false)
#define IsLogEnabled(level, mask) (AMD_LOG_LEVEL >= level && (AMD_LOG_MASK & mask || AMD_LOG_MASK == amd::LOG_ALWAYS))
//called on entry and exit, calculates duration with local starttime variable defined in HIP_INIT_API
#define HIPPrintDuration(level, mask, startTimeUs, format, ...) \
do { \