From 43625bd7cffa8dfaffc43ef6a989dc71696ca1b6 Mon Sep 17 00:00:00 2001 From: Keyon Jie <10458135+keyonjie@users.noreply.github.com> Date: Sat, 8 Mar 2025 06:58:10 -0800 Subject: [PATCH] intel_npu: compile_tool: fix typo in help message (#29332) fix the minor typo in the compile_tool help message, from "-ionl" to "-ioml". Signed-off-by: Keyon Jie --- src/plugins/intel_npu/tools/compile_tool/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/intel_npu/tools/compile_tool/main.cpp b/src/plugins/intel_npu/tools/compile_tool/main.cpp index 0afb3d669f7bb9..36554c0dbe81b1 100644 --- a/src/plugins/intel_npu/tools/compile_tool/main.cpp +++ b/src/plugins/intel_npu/tools/compile_tool/main.cpp @@ -71,7 +71,7 @@ static constexpr char outputs_model_layout_message[] = static constexpr char ioml_message[] = "Optional. Specifies model layout for input and output tensors by name.\n" - " Example: -ionl \"input:NCHW, output:NHWC\".\n" + " Example: -ioml \"input:NCHW, output:NHWC\".\n" " Notice that quotes are required.\n" " Overwrites layout from il and ol options for specified layers.";