diff --git a/projects/amdsmi/docs/reference/amdsmi-py-api.md b/projects/amdsmi/docs/reference/amdsmi-py-api.md index b184c1d4e5..5d2a449e7c 100644 --- a/projects/amdsmi/docs/reference/amdsmi-py-api.md +++ b/projects/amdsmi/docs/reference/amdsmi-py-api.md @@ -3804,7 +3804,7 @@ except AmdSmiException as e: ### amdsmi_set_gpu_compute_partition -Description: Set the compute partition to the given GPU +Description: Set the compute partition to the given GPU. This function does not allow any concurrent operations. Device must be idle and have no workloads when performing set partition operations. Input parameters: @@ -3868,7 +3868,7 @@ except AmdSmiException as e: ### amdsmi_set_gpu_memory_partition -Description: Set the memory partition to the given GPU +Description: Set the memory partition to the given GPU. This function does not allow any concurrent operations. Devices must be idle and have no workloads when performing set partition operations. Input parameters: diff --git a/projects/amdsmi/include/amd_smi/amdsmi.h b/projects/amdsmi/include/amd_smi/amdsmi.h index 1c9440678a..a6765dd3e2 100644 --- a/projects/amdsmi/include/amd_smi/amdsmi.h +++ b/projects/amdsmi/include/amd_smi/amdsmi.h @@ -5338,7 +5338,8 @@ amdsmi_get_gpu_compute_partition(amdsmi_processor_handle processor_handle, * * @details Given a processor handle @p processor_handle, a type of compute partition * @p compute_partition, this function will attempt to update the selected - * device's compute partition setting. + * device's compute partition setting. This function does not allow any concurrent operations. + * Device must be idle and have no workloads when performing set partition operations. * * @param[in] processor_handle Device which to query * @@ -5412,7 +5413,8 @@ amdsmi_get_gpu_memory_partition(amdsmi_processor_handle processor_handle, char * * * @details Given a processor handle @p processor_handle and a type of memory partition * @p memory_partition, this function will attempt to update the selected - * device's memory partition setting. + * device's memory partition setting. This function does not allow any concurrent operations. + * Device must be idle and have no workloads when performing set partition operations. * * @param[in] processor_handle Device which to query *