You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -15089,7 +15089,7 @@ cdef class DevicePowerMizerModes_v1:
15089
15089
15090
15090
@property
15091
15091
def supported_power_mizer_modes(self):
15092
-
"""int: OUT: Bitmask of supported powermizer modes."""
15092
+
"""int: OUT: Bitmask of supported powermizer modes. The bitmask of supported power mizer modes on this device. The supported modes can be combined using the bitwise OR operator '|'. For example, if a device supports all PowerMizer modes, the bitmask would be: supportedPowerMizerModes = ((1 << NVML_POWER_MIZER_MODE_ADAPTIVE) | (1 << NVML_POWER_MIZER_MODE_PREFER_MAXIMUM_PERFORMANCE) | (1 << NVML_POWER_MIZER_MODE_AUTO) | (1 << NVML_POWER_MIZER_MODE_PREFER_CONSISTENT_PERFORMANCE)); This bitmask can be used to check which power mizer modes are available on the device by performing a bitwise AND operation with the specific mode you want to check."""
"""Retrieves the amount of used, free, reserved and total memory available on the device, in bytes. The reserved amount is supported on version 2 only.
22878
+
"""Retrieves the amount of used, free, reserved and total memory available on the device, in bytes. nvmlDeviceGetMemoryInfo_v2 accounts separately for reserved memory and includes it in the used memory amount.
22879
22879
22880
22880
Args:
22881
22881
device (intptr_t): The identifier of the target device.
@@ -24423,7 +24423,7 @@ cpdef unsigned int device_get_nvlink_version(intptr_t device, unsigned int link)
24423
24423
link (unsigned int): Specifies the NvLink link to be queried.
24424
24424
24425
24425
Returns:
24426
-
unsigned int: Requested NvLink version from nvmlNvlinkVersion_t.
24426
+
unsigned int: Requested NvLink version from ``nvmlNvlinkVersion_t``.
0 commit comments