Change device_handle to processor_handle

grep -rli 'device_handle' * | xargs -i@ sed -i
's/device_handle/processor_handle/g' @

Change-Id: Ifc8b7fa3b5488ce1fa8d8cf9eb3981a09450de11
이 커밋은 다음에 포함됨:
Suma Hegde
2023-02-25 05:28:40 -05:00
커밋한 사람 Naveen Krishna Chatradhi
부모 3963036a05
커밋 3f9e4d95d4
44개의 변경된 파일1381개의 추가작업 그리고 1377개의 파일을 삭제
+2 -2
파일 보기
@@ -102,11 +102,11 @@ void TestAPISupportRead::Run(void) {
for (uint32_t x = 0; x < num_iterations(); ++x) {
for (uint32_t i = 0; i < num_monitor_devs(); ++i) {
IF_VERB(STANDARD) {
PrintDeviceHeader(device_handles_[i]);
PrintDeviceHeader(processor_handles_[i]);
std::cout << "Supported AMDSMI Functions:" << std::endl;
std::cout << "\tVariants (Monitors)" << std::endl;
}
err = amdsmi_dev_open_supported_func_iterator(device_handles_[i], &iter_handle);
err = amdsmi_dev_open_supported_func_iterator(processor_handles_[i], &iter_handle);
CHK_ERR_ASRT(err)
while (1) {