mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 01:10:17 +00:00
24 lines
376 B
C++
24 lines
376 B
C++
#ifndef _OLC_LOGGER_HPP_
|
|
#define _OLC_LOGGER_HPP_
|
|
|
|
#include <fstream>
|
|
|
|
namespace online_compile {
|
|
|
|
enum class LogLevel
|
|
{
|
|
Quiet = 1,
|
|
Error = 2,
|
|
Warning = 3,
|
|
Info = 4,
|
|
Info2 = 5
|
|
};
|
|
|
|
std::ostream& fdt_log(LogLevel level, const char* header, const char* content);
|
|
std::ostream& fdt_log();
|
|
void fdt_log_flush();
|
|
|
|
}; // namespace online_compile
|
|
|
|
#endif
|