From 20d4217fcf5c3f27977fd68aec5596408fa48066 Mon Sep 17 00:00:00 2001 From: Nicolas Oliver Date: Wed, 7 May 2025 22:06:18 -0700 Subject: [PATCH 1/2] Update cli_resource.cpp * Fix type in devcies --- cli/src/cli_resource.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/cli_resource.cpp b/cli/src/cli_resource.cpp index f0a65098..88a86eb7 100644 --- a/cli/src/cli_resource.cpp +++ b/cli/src/cli_resource.cpp @@ -13,7 +13,7 @@ namespace xpum::cli { namespace { #ifdef DAEMONLESS std::unordered_map string_table = { - {"CLI_APP_DESC", "Intel XPU System Management Interface -- v" CLI_VERSION_IN_HELP "\nIntel XPU System Management Interface provides the Intel datacenter GPU model. It can also be used to update the firmware.\nIntel XPU System Management Interface is based on Intel oneAPI Level Zero. Before using Intel XPU System Management Interface, the GPU driver and Intel oneAPI Level Zero should be installed rightly.\n\nSupported devcies:\n - Intel Data Center GPU"}}; + {"CLI_APP_DESC", "Intel XPU System Management Interface -- v" CLI_VERSION_IN_HELP "\nIntel XPU System Management Interface provides the Intel datacenter GPU model. It can also be used to update the firmware.\nIntel XPU System Management Interface is based on Intel oneAPI Level Zero. Before using Intel XPU System Management Interface, the GPU driver and Intel oneAPI Level Zero should be installed rightly.\n\nSupported devices:\n - Intel Data Center GPU"}}; #else std::unordered_map string_table = { {"CLI_APP_DESC", "Intel XPU Manager Command Line Interface -- v" CLI_VERSION_IN_HELP "\nIntel XPU Manager Command Line Interface provides the Intel data center GPU model and monitoring capabilities. It can also be used to change the Intel data center GPU settings and update the firmware.\nIntel XPU Manager is based on Intel oneAPI Level Zero. Before using Intel XPU Manager, the GPU driver and Intel oneAPI Level Zero should be installed rightly.\n\nSupported devices:\n - Intel Data Center GPU "}}; @@ -31,4 +31,4 @@ getResourceString(const std::string& key) { } } -} // namespace xpum::cli \ No newline at end of file +} // namespace xpum::cli From 3eae407eabc5965159b5ac876ee21c0f94789bf9 Mon Sep 17 00:00:00 2001 From: Nicolas Oliver Date: Wed, 7 May 2025 22:07:21 -0700 Subject: [PATCH 2/2] Update cli_resource.cpp * Fix typo in devcies --- windows/winxpum/cli/src/cli_resource.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/winxpum/cli/src/cli_resource.cpp b/windows/winxpum/cli/src/cli_resource.cpp index d0752e26..7792f296 100644 --- a/windows/winxpum/cli/src/cli_resource.cpp +++ b/windows/winxpum/cli/src/cli_resource.cpp @@ -14,7 +14,7 @@ namespace xpum::cli { namespace { std::string CLI_VERSION_IN_HELP = std::to_string(VER_VERSION_MAJOR) + "." + std::to_string(VER_VERSION_MINOR); std::unordered_map string_table = { - {"CLI_APP_DESC", "Intel XPU System Management Interface -- v" + CLI_VERSION_IN_HELP + "\nIntel XPU System Management Interface provides the Intel datacenter GPU model. It can also be used to update the firmware.\nIntel XPU System Management Interface is based on Intel oneAPI Level Zero. Before using Intel XPU System Management Interface, the GPU driver and Intel oneAPI Level Zero should be installed rightly.\n\nSupported devcies:\n - Intel Data Center GPU"}}; + {"CLI_APP_DESC", "Intel XPU System Management Interface -- v" + CLI_VERSION_IN_HELP + "\nIntel XPU System Management Interface provides the Intel datacenter GPU model. It can also be used to update the firmware.\nIntel XPU System Management Interface is based on Intel oneAPI Level Zero. Before using Intel XPU System Management Interface, the GPU driver and Intel oneAPI Level Zero should be installed rightly.\n\nSupported devices:\n - Intel Data Center GPU"}}; } // namespace @@ -29,4 +29,4 @@ namespace xpum::cli { } } -} // namespace xpum::cli \ No newline at end of file +} // namespace xpum::cli