cuda.bindings.nvml.device_get_min_max_clock_of_p_state#

cuda.bindings.nvml.device_get_min_max_clock_of_p_state(
intptr_t device,
int type,
int pstate,
) tuple#
Retrieve min and max clocks of some clock domain for a given PState.

:param device: The identifier of the target device.
:type device: intptr_t
:param type: Clock domain.
:type type: ClockType
:param pstate: PState to query.
:type pstate: Pstates

:returns:

          - unsigned int: Reference in which to return min clock frequency.
          - unsigned int: Reference in which to return max clock frequency.
:rtype: A 2-tuple containing

.. seealso:: `nvmlDeviceGetMinMaxClockOfPState`