Merging amd-dev into amd-master 20241004

Signed-off-by: gabrpham <Gabriel.Pham@amd.com>
Change-Id: I412f8377b75280988f813ce66079a2eed57c1e5b
このコミットが含まれているのは:
gabrpham
2024-10-04 12:56:13 -05:00
コミット a440e12fb8
4個のファイルの変更7行の追加4行の削除
+2
ファイルの表示
@@ -19,6 +19,8 @@ installed to query firmware information and hardware IPs.
## Install CLI Tool and Libraries
**Disclaimer: CLI Tool is provided as an example code to aid the development of telemetry tools and is not guaranteed to be backwards compatible. The Python or C++ Library is recommended as a reliable data source.**
### Requirements
* python 3.6.8+ 64-bit
+1 -1
ファイルの表示
@@ -1,6 +1,6 @@
# AMD SMI CLI Tool
**Disclaimer: CLI Tool is provided as an example code to aid the development of telemetry tools. Python or C++ Library is recommended as a reliable data source.**
**Disclaimer: CLI Tool is provided as an example code to aid the development of telemetry tools and is not guaranteed to be backwards compatible. The Python or C++ Library is recommended as a reliable data source.**
This tool acts as a command line interface for manipulating
and monitoring the amdgpu kernel, and is intended to replace
+3 -2
ファイルの表示
@@ -2146,9 +2146,10 @@ class AMDSMICommands():
for key, value in throttle_status.items():
if "active" in key:
throttle_status[key] = "NOT ACTIVE"
if value:
if value is True:
throttle_status[key] = "ACTIVE"
elif value is False:
throttle_status[key] = "NOT ACTIVE"
continue
if "percent" not in key:
+1 -1
ファイルの表示
@@ -584,7 +584,7 @@ amdsmi_status_t smi_amdgpu_get_market_name_from_dev_id(uint32_t device_id, char
break;
case 0x74a9:
case 0x74bd:
strcpy(market_name, "MI300XHF");
strcpy(market_name, "AMD Instinct MI300X HF");
break;
default:
return AMDSMI_STATUS_API_FAILED;