dcgm-exporter icon indicating copy to clipboard operation
dcgm-exporter copied to clipboard

how to query rated power?

Open wade-liwei opened this issue 3 months ago • 1 comments

Is this a new feature, an improvement, or a change to existing functionality?

New Feature

Please provide a clear description of the problem this feature solves

How do I to query rated power?

Feature Description

query rated power

Describe your ideal solution

I know a little.

Additional context

e.g: 3080 320W

wade-liwei avatar May 10 '24 07:05 wade-liwei

@wade-liwei

Most likely, you need one of these fields:

/**
 * Current Power limit for the device
 */
#define DCGM_FI_DEV_POWER_MGMT_LIMIT 160

/**
 * Minimum power management limit for the device
 */
#define DCGM_FI_DEV_POWER_MGMT_LIMIT_MIN 161

/**
 * Maximum power management limit for the device
 */
#define DCGM_FI_DEV_POWER_MGMT_LIMIT_MAX 162

/**
 * Default power management limit for the device
 */
#define DCGM_FI_DEV_POWER_MGMT_LIMIT_DEF 163

/**
 * Effective power limit that the driver enforces after taking into account all limiters
 */
#define DCGM_FI_DEV_ENFORCED_POWER_LIMIT 164

nikkon-dev avatar May 11 '24 06:05 nikkon-dev