Searched refs:MsLogLevel (Results 1 – 25 of 120) sorted by relevance
12345
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/trt/ |
D | trt_utils.h | 110 log_level_ = MsLogLevel::WARNING; // set default log level to WARNING in TrtLogger() 121 log_level_ = static_cast<MsLogLevel>(ch); in TrtLogger() 129 static std::map<Severity, std::tuple<MsLogLevel, int, std::string>> logger_map = { in log() 130 {Severity::kVERBOSE, {MsLogLevel::DEBUG, google::GLOG_INFO, "VERBOSE"}}, in log() 131 {Severity::kINFO, {MsLogLevel::INFO, google::GLOG_INFO, "INFO"}}, in log() 132 {Severity::kWARNING, {MsLogLevel::WARNING, google::GLOG_WARNING, "WARNING"}}, in log() 133 {Severity::kERROR, {MsLogLevel::ERROR, google::GLOG_ERROR, "ERROR"}}, in log() 134 {Severity::kINTERNAL_ERROR, {MsLogLevel::ERROR, google::GLOG_ERROR, "INTERNAL ERROR"}}}; in log() 155 MsLogLevel log_level_;
|
/third_party/mindspore/mindspore/core/utils/ |
D | log_adapter.h | 109 enum MsLogLevel : int { DEBUG = 0, INFO, WARNING, ERROR, EXCEPTION }; enum 156 MS_EXPORT extern enum MsLogLevel this_thread_max_log_level; 159 MS_EXPORT extern thread_local enum MsLogLevel this_thread_max_log_level; 164 this_thread_max_log_level = MsLogLevel::WARNING; in TryCatchGuard() 170 enum MsLogLevel origin_log_level_; 180 LogWriter(const LocationInfo &location, MsLogLevel log_level, SubModuleId submodule, 196 MsLogLevel log_level_;
|
D | log_adapter.cc | 51 static std::string GetLogLevel(MsLogLevel level) { in GetLogLevel() 64 static int GetGlogLevel(MsLogLevel level) { in GetGlogLevel() 102 static int GetSlogLevel(MsLogLevel level) { 357 bool ParseLogLevel(const std::string &str_level, MsLogLevel *ptr_level) { in ParseLogLevel() 364 *ptr_level = static_cast<MsLogLevel>(ch); in ParseLogLevel() 372 static MsLogLevel GetGlobalLogLevel() { in GetGlobalLogLevel() 374 return static_cast<MsLogLevel>(FLAGS_v); in GetGlobalLogLevel() 386 return static_cast<MsLogLevel>(log_level); in GetGlobalLogLevel() 414 MsLogLevel submodule_log_level; in InitSubModulesLogLevel()
|
/third_party/mindspore/mindspore/core/gvar/ |
D | logging_level.cc | 24 enum MsLogLevel this_thread_max_log_level = EXCEPTION; 26 thread_local enum MsLogLevel this_thread_max_log_level = EXCEPTION;
|
/third_party/mindspore/tests/ut/cpp/dataset/ |
D | global_context_test.cc | 21 using mindspore::MsLogLevel::INFO;
|
D | decode_op_test.cc | 25 using mindspore::MsLogLevel::INFO;
|
D | dvpp_decode_jpeg_test.cc | 25 using mindspore::MsLogLevel::INFO;
|
D | equalize_op_test.cc | 25 using mindspore::MsLogLevel::INFO;
|
D | auto_contrast_op_test.cc | 25 using mindspore::MsLogLevel::INFO;
|
D | random_affine_op_test.cc | 25 using mindspore::MsLogLevel::INFO;
|
D | invert_op_test.cc | 22 using mindspore::MsLogLevel::INFO;
|
D | rescale_op_test.cc | 22 using mindspore::MsLogLevel::INFO;
|
D | random_horizontal_flip_op_test.cc | 24 using mindspore::MsLogLevel::INFO;
|
D | random_vertical_flip_op_test.cc | 22 using mindspore::MsLogLevel::INFO;
|
D | resize_op_test.cc | 22 using mindspore::MsLogLevel::INFO;
|
D | cut_out_op_test.cc | 22 using mindspore::MsLogLevel::INFO;
|
D | random_resize_op_test.cc | 24 using mindspore::MsLogLevel::INFO;
|
D | swap_red_blue_test.cc | 22 using mindspore::MsLogLevel::INFO;
|
D | random_sharpness_op_test.cc | 25 using mindspore::MsLogLevel::INFO;
|
D | pad_op_test.cc | 22 using mindspore::MsLogLevel::INFO;
|
D | random_solarize_op_test.cc | 26 using mindspore::MsLogLevel::INFO;
|
D | random_rotation_op_test.cc | 25 using mindspore::MsLogLevel::INFO;
|
D | csv_op_test.cc | 32 using mindspore::MsLogLevel::INFO;
|
D | channel_swap_test.cc | 23 using mindspore::MsLogLevel::INFO;
|
D | random_vertical_flip_with_bbox_op_test.cc | 24 using mindspore::MsLogLevel::INFO;
|
12345