File tree Expand file tree Collapse file tree
cuda_core/cuda/core/system Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ _CLOCKS_EVENT_REASONS_MAPPING = {
2020 nvml.ClocksEventReasons.THROTTLE_REASON_HW_THERMAL_SLOWDOWN: ClocksEventReasons.HW_THERMAL_SLOWDOWN,
2121 nvml.ClocksEventReasons.THROTTLE_REASON_HW_POWER_BRAKE_SLOWDOWN: ClocksEventReasons.HW_POWER_BRAKE_SLOWDOWN,
2222 nvml.ClocksEventReasons.EVENT_REASON_DISPLAY_CLOCK_SETTING: ClocksEventReasons.DISPLAY_CLOCK_SETTING,
23+ nvml.ClocksEventReasons.EVENT_REASON_BOARD_LIMIT: ClocksEventReasons.BOARD_LIMIT,
24+ nvml.ClocksEventReasons.EVENT_REASON_RELIABILITY: ClocksEventReasons.RELIABILITY,
2325}
2426
2527
Original file line number Diff line number Diff line change @@ -96,6 +96,8 @@ class ClocksEventReasons(StrEnum):
9696 HW_THERMAL_SLOWDOWN = "hw_thermal_slowdown"
9797 HW_POWER_BRAKE_SLOWDOWN = "hw_power_brake_slowdown"
9898 DISPLAY_CLOCK_SETTING = "display_clock_setting"
99+ BOARD_LIMIT = "board_limit"
100+ RELIABILITY = "reliability"
99101
100102
101103class ClockType (StrEnum ):
You can’t perform that action at this time.
0 commit comments