Renamed API amdsmi_counter_get_available_counters

to amdsmi_get_gpu_available_counters

grep -rli 'amdsmi_counter_get_available_counters' * | xargs -i@ sed -i
's/amdsmi_counter_get_available_counters/amdsmi_get_gpu_available_counters/g' @

Change-Id: Ief60be6c95f2ea4d0f6f91b153263d95710e6942


[ROCm/amdsmi commit: 0cb9e157db]
This commit is contained in:
Deepak Mewar
2023-02-27 02:08:28 -05:00
committed by Naveen Krishna Chatradhi
parent 1894e4d345
commit 3be8f88cab
9 changed files with 20 additions and 20 deletions
+3 -3
View File
@@ -2377,7 +2377,7 @@ try:
except AmdSmiException as e:
print(e)
```
## amdsmi_counter_get_available_counters
## amdsmi_get_gpu_available_counters
Description: Get the number of currently available counters
Input parameters:
@@ -2387,7 +2387,7 @@ Input parameters:
Output: Number of available counters for the given device of the inputted event group
Exceptions that can be thrown by ` amdsmi_counter_get_available_counters` function:
Exceptions that can be thrown by ` amdsmi_get_gpu_available_counters` function:
* `AmdSmiLibraryException`
* `AmdSmiRetryException`
* `AmdSmiParameterException`
@@ -2400,7 +2400,7 @@ try:
print("No GPUs on machine")
else:
for device in devices:
available_counters = amdsmi_counter_get_available_counters(device, AmdSmiEventGroup.XGMI)
available_counters = amdsmi_get_gpu_available_counters(device, AmdSmiEventGroup.XGMI)
print(available_counters)
except AmdSmiException as e:
print(e)