Function: get_device_utilization_rate

Applicability

Product

Supported (√/x)

Atlas A3 training products/Atlas A3 inference products

Atlas A2 training products/Atlas A2 inference products

Atlas training products

Atlas inference products

Atlas 200I/500 A2 inference products

Function Usage

Queries the usage of the Cube, Vector, and AI CPU on the device.

Prototype

  • C Prototype
    1
    aclError aclrtGetDeviceUtilizationRate(int32_t deviceId, aclrtUtilizationInfo *utilizationInfo)
    
  • Python Function
    1
    utilization_info, ret = acl.rt.get_device_utilization_rate (device_id)
    

Parameter Description

Parameter

Description

device_id

Int, device ID.

Must be in the range of [0, Device count – 1]. Call acl.rt.get_device_count to obtain the device count.

Return Value Description

Return Value

Description

utilization_info

Dict, usage information dictionary of the aclrtUtilizationInfo type. For details, see aclrtUtilizationInfo.

ret

Int, error code: 0 on success; else, failure.

Restrictions

  • For Ascend virtual instances, this API cannot be called to query the usage, and the returned value has no meaning.
  • When profiling is enabled, this API cannot be called to query the usage, and the returned value has no meaning.
  • Querying the memory usage of a device is a reserved function and is not supported in the current version. If this API is called to query the memory usage, the returned value is -1.
  • There is no vector on the Atlas training products. When this API is called to query the vector usage, the returned value is -1.