Renamed API amdsmi_dev_set_power_profile to

amdsmi_set_gpu_power_profile

grep -rli 'amdsmi_dev_set_power_profile' * | xargs -i@ sed -i
's/amdsmi_dev_set_power_profile/amdsmi_set_gpu_power_profile/g' @

Change-Id: I10d7ee19fd86c11bbb7deafefb37df92e78aa2a3
This commit is contained in:
Deepak Mewar
2023-02-25 08:04:42 -05:00
committed by Naveen Krishna Chatradhi
parent 757765a1e3
commit dec22a9b44
9 changed files with 17 additions and 17 deletions
+3 -3
View File
@@ -1252,7 +1252,7 @@ try:
except AmdSmiException as e:
print(e)
```
## amdsmi_dev_set_power_profile
## amdsmi_set_gpu_power_profile
Description: Set the power profile
Input parameters:
@@ -1263,7 +1263,7 @@ the desired new power profile
Output: None
Exceptions that can be thrown by ` amdsmi_dev_set_power_profile` function:
Exceptions that can be thrown by ` amdsmi_set_gpu_power_profile` function:
* `AmdSmiLibraryException`
* `AmdSmiRetryException`
* `AmdSmiParameterException`
@@ -1277,7 +1277,7 @@ try:
else:
for device in devices:
profile = ...
amdsmi_dev_set_power_profile(device, 0, profile)
amdsmi_set_gpu_power_profile(device, 0, profile)
except AmdSmiException as e:
print(e)
```