Renamed API amdsmi_dev_destroy_counter

to amdsmi_gpu_destroy_counter

grep -rli 'amdsmi_dev_destroy_counter' * | xargs -i@ sed -i
's/amdsmi_dev_destroy_counter/amdsmi_gpu_destroy_counter/g' @

Change-Id: I328f65f5a2a86108ee5b217f95ed0f4f03745286
This commit is contained in:
Deepak Mewar
2023-02-27 02:03:20 -05:00
committed by Naveen Krishna Chatradhi
parent 0c435b81c2
commit e6dd8d49ba
7 changed files with 17 additions and 17 deletions
+3 -3
View File
@@ -2289,7 +2289,7 @@ try:
except AmdSmiException as e:
print(e)
```
## amdsmi_dev_destroy_counter
## amdsmi_gpu_destroy_counter
Description: Destroys a performance counter object
Input parameters:
@@ -2298,7 +2298,7 @@ Input parameters:
Output: None
Exceptions that can be thrown by `amdsmi_dev_destroy_counter` function:
Exceptions that can be thrown by `amdsmi_gpu_destroy_counter` function:
* `AmdSmiLibraryException`
* `AmdSmiRetryException`
* `AmdSmiParameterException`
@@ -2312,7 +2312,7 @@ try:
else:
for device in devices:
event_handle = amdsmi_gpu_create_counter(device, AmdSmiEventGroup.XGMI)
amdsmi_dev_destroy_counter(event_handle)
amdsmi_gpu_destroy_counter(event_handle)
except AmdSmiException as e:
print(e)
```