System Information Functions#
Functions | |
rsmi_status_t | rsmi_compute_process_info_get (rsmi_process_info_t *procs, uint32_t *num_items) |
Get process information about processes currently using GPU. More... | |
rsmi_status_t | rsmi_compute_process_info_by_pid_get (uint32_t pid, rsmi_process_info_t *proc) |
Get process information about a specific process. More... | |
rsmi_status_t | rsmi_compute_process_gpus_get (uint32_t pid, uint32_t *dv_indices, uint32_t *num_devices) |
Get the device indices currently being used by a process. More... | |
Detailed Description
These functions are used to configure, query and control performance counting.
Function Documentation
◆ rsmi_compute_process_info_get()
rsmi_status_t rsmi_compute_process_info_get | ( | rsmi_process_info_t * | procs, |
uint32_t * | num_items | ||
) |
Get process information about processes currently using GPU.
Given a non-NULL pointer to an array procs
of rsmi_process_info_t's, of length *num_items
, this function will write up to *num_items
instances of rsmi_process_info_t to the memory pointed to by procs
. These instances contain information about each process utilizing a GPU. If procs
is not NULL, num_items
will be updated with the number of processes actually written. If procs
is NULL, num_items
will be updated with the number of processes for which there is current process information. Calling this function with procs
being NULL is a way to determine how much memory should be allocated for when procs
is not NULL.
- Parameters
-
[in,out] procs a pointer to memory provided by the caller to which process information will be written. This may be NULL in which case only num_items
will be updated with the number of processes found.[in,out] num_items A pointer to a uint32_t, which on input, should contain the amount of memory in rsmi_process_info_t's which have been provided by the procs
argument. On output, ifprocs
is non-NULL, this will be updated with the number rsmi_process_info_t structs actually written. Ifprocs
is NULL, this argument will be updated with the number processes for which there is information.
- Return values
-
RSMI_STATUS_SUCCESS is returned upon successful call RSMI_STATUS_INVALID_ARGS the provided arguments are not valid RSMI_STATUS_INSUFFICIENT_SIZE is returned if there were more processes for which information was available, but not enough space was provided as indicated by procs
andnum_items
, on input.
◆ rsmi_compute_process_info_by_pid_get()
rsmi_status_t rsmi_compute_process_info_by_pid_get | ( | uint32_t | pid, |
rsmi_process_info_t * | proc | ||
) |
Get process information about a specific process.
Given a pointer to an rsmi_process_info_t proc
and a process id pid
, this function will write the process information for pid
, if available, to the memory pointed to by proc
.
- Parameters
-
[in] pid The process ID for which process information is being requested [in,out] proc a pointer to a rsmi_process_info_t to which process information for pid
will be written if it is found.
- Return values
-
RSMI_STATUS_SUCCESS is returned upon successful call RSMI_STATUS_INVALID_ARGS the provided arguments are not valid RSMI_STATUS_NOT_FOUND is returned if there was no process information found for the provided pid
◆ rsmi_compute_process_gpus_get()
rsmi_status_t rsmi_compute_process_gpus_get | ( | uint32_t | pid, |
uint32_t * | dv_indices, | ||
uint32_t * | num_devices | ||
) |
Get the device indices currently being used by a process.
Given a process id pid
, a non-NULL pointer to an array of uint32_t's dv_indices
of length *num_devices
, this function will write up to num_devices
device indices to the memory pointed to by dv_indices
. If dv_indices
is not NULL, num_devices
will be updated with the number of gpu's currently being used by process pid
. If dv_indices
is NULL, dv_indices
will be updated with the number of gpus currently being used by pid
. Calling this function with dv_indices
being NULL is a way to determine how much memory is required for when dv_indices
is not NULL.
- Parameters
-
[in] pid The process id of the process for which the number of gpus currently being used is requested [in,out] dv_indices a pointer to memory provided by the caller to which indices of devices currently being used by the process will be written. This may be NULL in which case only num_devices
will be updated with the number of devices being used.[in,out] num_devices A pointer to a uint32_t, which on input, should contain the amount of memory in uint32_t's which have been provided by the dv_indices
argument. On output, ifdv_indices
is non-NULL, this will be updated with the number uint32_t's actually written. Ifdv_indices
is NULL, this argument will be updated with the number devices being used.
- Return values
-
RSMI_STATUS_SUCCESS is returned upon successful call RSMI_STATUS_INVALID_ARGS the provided arguments are not valid RSMI_STATUS_INSUFFICIENT_SIZE is returned if there were more gpu indices that could have been written, but not enough space was provided as indicated by dv_indices
andnum_devices
, on input.