mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-13 09:45:56 +00:00
* change olc cmake * adding online compile to fwd-v4r5r2 * update scripts * remane fwd-v4r5r2 to fwd-v6r1 * clean up
24 lines
366 B
C++
24 lines
366 B
C++
#ifndef _OLC_LOGGER_HPP_
|
|
#define _OLC_LOGGER_HPP_
|
|
|
|
#include <fstream>
|
|
|
|
namespace olCompile {
|
|
|
|
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 olCompile
|
|
|
|
#endif
|