cuda.bindings.nvml.device_get_remapped_rows#

cuda.bindings.nvml.device_get_remapped_rows(intptr_t device) tuple#
Get number of remapped rows. The number of rows reported will be based on the cause of the remapping. isPending indicates whether or not there are pending remappings. A reset will be required to actually remap the row. failureOccurred will be set if a row remapping ever failed in the past. A pending remapping won't affect future work on the GPU since error-containment and dynamic page blacklisting will take care of that.

:param device: The identifier of the target device.
:type device: intptr_t

:returns:

          - unsigned int: Reference for number of rows remapped due to correctable errors.
          - unsigned int: Reference for number of rows remapped due to uncorrectable errors.
          - unsigned int: Reference for whether or not remappings are pending.
          - unsigned int: Reference that is set when a remapping has failed in the past.
:rtype: A 4-tuple containing

.. seealso:: `nvmlDeviceGetRemappedRows`