-
Notifications
You must be signed in to change notification settings - Fork 362
/
Copy pathlogging.h
77 lines (69 loc) · 2 KB
/
logging.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* Copyright (c) NVIDIA Corporation.
* All rights reserved.
*
* This library is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <string>
#include "torch_tensorrt/macros.h"
namespace torch_tensorrt {
namespace logging {
/**
* Emum for setting message severity
*/
enum Level {
/// Only print messages for internal errors
kINTERNAL_ERROR,
/// Print all internal errors and errors (default)
kERROR,
/// Print warnings and errors
kWARNING,
/// Print all info, warnings and errors
kINFO,
/// Print all debug info, info, warnings and errors
kDEBUG,
/// Print everything including the intermediate graphs of the lowering phase
kGRAPH,
};
// Are these ones necessary for the user?
TORCHTRT_API std::string get_logging_prefix();
TORCHTRT_API void set_logging_prefix(std::string prefix);
/**
* @brief Sets the level that logging information needs to be to be added to the
* log
*
* @param lvl: torch_tensorrt::logging::Level - Level that messages need to be at or
* above to be added to the log
*/
TORCHTRT_API void set_reportable_log_level(Level lvl);
/**
* @brief Sets if logging prefix will be colored (helpful when debugging but not
* always supported by terminal)
*
* @param colored_output_on: bool - If the output will be colored or not
*/
TORCHTRT_API void set_is_colored_output_on(bool colored_output_on);
/**
* @brief Get the current reportable log level
*
* @return TORCHTRT_API get_reportable_log_level
*/
TORCHTRT_API Level get_reportable_log_level();
/**
* @brief Is colored output enabled?
*
* @return TORCHTRT_API get_is_colored_output_on
*/
TORCHTRT_API bool get_is_colored_output_on();
/**
* @brief Adds a message to the global log
*
* @param lvl: torch_tensorrt::logging::Level - Severity of the message
* @param msg: std::string - Message to be logged
*/
// Dont know if we want this?
TORCHTRT_API void log(Level lvl, std::string msg);
} // namespace logging
} // namespace torch_tensorrt