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


[ROCm/amdsmi commit: e6dd8d49ba]
This commit is contained in:
Deepak Mewar
2023-02-27 02:03:20 -05:00
کامیت شده توسط Naveen Krishna Chatradhi
والد 69267f01c1
کامیت ca4b919b16
7فایلهای تغییر یافته به همراه17 افزوده شده و 17 حذف شده
@@ -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)
```