Home
last modified time | relevance | path

Searched refs:DebugLevel (Results 1 – 25 of 39) sorted by relevance

12

/external/pytorch/torch/csrc/distributed/c10d/
Ddebug.cpp21 DebugLevel loadDebugLevelFromEnvironment() { in loadDebugLevelFromEnvironment()
25 return DebugLevel::Off; in loadDebugLevelFromEnvironment()
28 DebugLevel level{}; in loadDebugLevelFromEnvironment()
39 level = DebugLevel::Off; in loadDebugLevelFromEnvironment()
41 level = DebugLevel::Info; in loadDebugLevelFromEnvironment()
43 level = DebugLevel::Detail; in loadDebugLevelFromEnvironment()
59 DebugLevel g_debug_level = DebugLevel::Off;
63 void setDebugLevel(DebugLevel level) { in setDebugLevel()
71 DebugLevel debug_level() noexcept { in debug_level()
Ddebug.h13 enum class DebugLevel { Off = 0, Info = 1, Detail = 2 }; enum
15 TORCH_API void setDebugLevel(DebugLevel level);
21 TORCH_API DebugLevel debug_level() noexcept;
Dlogging.cpp28 return debug_level() != DebugLevel::Off; in isLogLevelEnabled()
31 return debug_level() == DebugLevel::Detail; in isLogLevelEnabled()
Dlogger.cpp215 if (debug_level() != DebugLevel::Off) { in set_construction_data_and_log()
391 if (debug_level() == DebugLevel::Detail) { in set_runtime_stats_and_log()
DProcessGroupNCCL.hpp279 DebugLevel distDebugLevel = DebugLevel::Off);
441 DebugLevel distDebugLevel_;
Dreducer.cpp126 if (ddp_debug_level_ != c10d::DebugLevel::Off) { in Reducer()
602 if (ddp_debug_level_ != c10d::DebugLevel::Off) { in delay_all_reduce()
814 ddp_debug_level_ == c10d::DebugLevel::Off || found_param_name, in checkAndRaiseMarkedTwiceError()
1381 if (ddp_debug_level_ == c10d::DebugLevel::Detail) { in search_unused_parameters()
1851 if (ddp_debug_level_ != c10d::DebugLevel::Off) { in rebuild_buckets()
1975 if (ddp_debug_level_ == DebugLevel::Off) { in ensure_prior_reduction_finished()
DBackend.hpp407 DebugLevel dist_debug_level_;
Dreducer.hpp535 DebugLevel ddp_debug_level_;
DProcessGroup.hpp735 DebugLevel dist_debug_level_{DebugLevel::Off};
/external/gmmlib/Source/GmmLib/inc/External/Common/
DGmmDebug.h124 #define GMMLibDebugMessage(DebugLevel, message, ...) \ argument
126 if(DebugLevel == GFXDBG_CRITICAL) \
130 else if(DebugLevel == GFXDBG_VERBOSE) \
134 else if(DebugLevel == GFXDBG_OFF) \
/external/wpa_supplicant_8/wpa_supplicant/aidl/vendor/
Dsupplicant.h70 DebugLevel in_level, bool in_showTimestamp, bool in_showKeys) override;
71 ::ndk::ScopedAStatus getDebugLevel(DebugLevel* _aidl_return) override;
95 DebugLevel level, bool show_timestamp, bool show_keys);
Dsupplicant.cpp250 DebugLevel in_level, bool in_showTimestamp, in setDebugParams()
267 ::ndk::ScopedAStatus Supplicant::getDebugLevel(DebugLevel* _aidl_return) in getDebugLevel()
269 *_aidl_return = static_cast<DebugLevel>(wpa_debug_level); in getDebugLevel()
567 DebugLevel level, bool show_timestamp, bool show_keys) in setDebugParamsInternal()
Daidl_manager.h325 static_cast<uint32_t>(DebugLevel::EXCESSIVE) == MSG_EXCESSIVE,
328 static_cast<uint32_t>(DebugLevel::ERROR) == MSG_ERROR,
/external/gmmlib/Source/util/
DgfxDebug.h103 (MessageLevel & pDebugControl->DebugLevel[ComponentId]))) \
171 (MessageLevel & pDebugControl->DebugLevel[ComponentId]))) \
237 unsigned long DebugLevel[MAX_COMPONENT_COUNT_DONOTUSE]; member
Dg_gfxDebug.h149 void GMMPrintMessage(unsigned long DebugLevel, const char *DebugMessageFmt, ...);
/external/wpa_supplicant_8/hostapd/aidl/
Dhostapd.h57 ::ndk::ScopedAStatus setDebugParams(DebugLevel level) override;
81 ::ndk::ScopedAStatus setDebugParamsInternal(DebugLevel level);
/external/pytorch/test/distributed/fsdp/
Dtest_fsdp_exec_order.py118 dist.set_debug_level(dist.DebugLevel.DETAIL)
141 dist.set_debug_level(dist.DebugLevel.DETAIL)
184 dist.set_debug_level(dist.DebugLevel.DETAIL)
/external/pigweed/pw_log/
Dbasic_log_test.cc40 TEST(BasicLog, DebugLevel) { in TEST() argument
233 TEST(CustomFormatString, DebugLevel) { in TEST() argument
/external/mdnsresponder/mDNSShared/
DDebugServices.c83 static OSStatus DebugPrint( DebugLevel inLevel, char *inData, size_t inSize );
128 static void DebugWindowsEventLogPrint( DebugLevel inLevel, char *inData, size_t inSize );
198 static DebugLevel gDebugPrintLevelMin = kDebugLevelInfo;
199 static DebugLevel gDebugPrintLevelMax = kDebugLevelMax;
200 static DebugLevel gDebugBreakLevel = kDebugLevelAssert;
424 DebugLevel * level; in DebugGetProperty()
430 level = va_arg( args, DebugLevel * ); in DebugGetProperty()
436 level = va_arg( args, DebugLevel * ); in DebugGetProperty()
442 level = va_arg( args, DebugLevel * ); in DebugGetProperty()
463 DebugLevel level; in DebugSetProperty()
[all …]
DDebugServices.h281 typedef int32_t DebugLevel; typedef
1406 DEBUG_EXPORT size_t DebugPrintF( DebugLevel inLevel, const char *inFormat, ... );
1416 DEBUG_EXPORT size_t DebugPrintFVAList( DebugLevel inLevel, const char *inFormat, va_list inArgs );
1540 DebugLevel inLevel,
/external/libcups/backend/
Dsnmp.c148 static int DebugLevel = 0; variable
234 _cupsSNMPSetDebug(DebugLevel); in main()
426 if (DebugLevel) in alarm_handler()
454 if (!DebugLevel) in debug_printf()
788 DebugLevel = atoi(debug); in read_snmp_conf()
823 DebugLevel = atoi(value); in read_snmp_conf()
/external/pytorch/torch/distributed/fsdp/
D_exec_order_utils.py34 debug_level: dist.DebugLevel, argument
51 self._checking_order: bool = debug_level == dist.DebugLevel.DETAIL
D_debug_utils.py61 if dist.get_rank() == 0 and dist.get_debug_level() == dist.DebugLevel.INFO:
/external/pytorch/torch/distributed/
D__init__.py51 DebugLevel,
/external/pytorch/test/distributed/
Dtest_c10d_common.py1518 self.assertEqual(default_debug_mode, dist.DebugLevel.OFF)
1520 "OFF": dist.DebugLevel.OFF,
1521 "off": dist.DebugLevel.OFF,
1522 "oFf": dist.DebugLevel.OFF,
1523 "INFO": dist.DebugLevel.INFO,
1524 "info": dist.DebugLevel.INFO,
1525 "INfO": dist.DebugLevel.INFO,
1526 "DETAIL": dist.DebugLevel.DETAIL,
1527 "detail": dist.DebugLevel.DETAIL,
1528 "DeTaIl": dist.DebugLevel.DETAIL,

12