Renamed API amdsmi_dev_set_pci_bandwidth to

amdsmi_set_gpu_pci_bandwidth

grep -rli 'amdsmi_dev_set_pci_bandwidth' * | xargs -i@ sed -i
's/amdsmi_dev_set_pci_bandwidth/amdsmi_set_gpu_pci_bandwidth/g' @

Change-Id: Id4312cfe5fddb63c42c4c6ca0a9a1d94b83f7164
This commit is contained in:
Deepak Mewar
2023-02-25 07:43:32 -05:00
committed by Naveen Krishna Chatradhi
parent d8e22b9687
commit 24c0005e15
9 changed files with 19 additions and 19 deletions
+3 -3
View File
@@ -1196,7 +1196,7 @@ except AmdSmiException as e:
print(e)
```
## amdsmi_dev_set_pci_bandwidth
## amdsmi_set_gpu_pci_bandwidth
Description: Control the set of allowed PCIe bandwidths that can be used
Input parameters:
@@ -1206,7 +1206,7 @@ to be enabled (1) and disabled (0)
Output: None
Exceptions that can be thrown by ` amdsmi_dev_set_pci_bandwidth` function:
Exceptions that can be thrown by ` amdsmi_set_gpu_pci_bandwidth` function:
* `AmdSmiLibraryException`
* `AmdSmiRetryException`
* `AmdSmiParameterException`
@@ -1219,7 +1219,7 @@ try:
print("No GPUs on machine")
else:
for device in devices:
amdsmi_dev_set_pci_bandwidth(device, 0)
amdsmi_set_gpu_pci_bandwidth(device, 0)
except AmdSmiException as e:
print(e)
```