From 8acad5a2465e5c59762a009a414890d9cea81c01 Mon Sep 17 00:00:00 2001 From: JP Meijers Date: Fri, 15 Nov 2024 10:25:18 +0200 Subject: [PATCH] Fix two typos in CLI --- cli/src/cli_resource.cpp | 2 +- windows/winxpum/cli/src/cli_resource.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/cli_resource.cpp b/cli/src/cli_resource.cpp index f0a65098..b809991f 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 "}}; diff --git a/windows/winxpum/cli/src/cli_resource.cpp b/windows/winxpum/cli/src/cli_resource.cpp index d0752e26..e6e5f22d 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