Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update the file that contains illegal character
  • Loading branch information
chilo-ms committed Aug 12, 2025
commit f625a093fdde4de1a2b548f1e54fd8d1a8fed0e9
2 changes: 1 addition & 1 deletion onnxruntime/test/perftest/command_args_parser.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.

Check warning on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_release_ep_generic_interface

The file contains a character starting at offset 0x48a7 that is illegal in the current source character set (codepage 65001).

Check failure on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_release_ep_generic_interface

the following warning is treated as an error

Check warning on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_release_vitisai

The file contains a character starting at offset 0x48a7 that is illegal in the current source character set (codepage 65001).

Check failure on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_release_vitisai

the following warning is treated as an error

Check warning on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_release

The file contains a character starting at offset 0x48a7 that is illegal in the current source character set (codepage 65001).

Check failure on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_release

the following warning is treated as an error

Check warning on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_release_xnnpack

The file contains a character starting at offset 0x48a7 that is illegal in the current source character set (codepage 65001).

Check failure on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_release_xnnpack

the following warning is treated as an error

Check warning on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_debug

The file contains a character starting at offset 0x48a7 that is illegal in the current source character set (codepage 65001).

Check failure on line 1 in onnxruntime/test/perftest/command_args_parser.cc

View workflow job for this annotation

GitHub Actions / build_x64_debug

the following warning is treated as an error
// Copyright (c) 2023 NVIDIA Corporation.
// SPDX-FileCopyrightText: Copyright 2024 Arm Limited and/or its affiliates <[email protected]>
// Licensed under the MIT License.
Expand Down Expand Up @@ -207,7 +207,7 @@
const auto& dim_override_str = absl::GetFlag(FLAGS_f);
if (!dim_override_str.empty()) {
// Abseil doesn't support the same option being provided multiple times — only the last occurrence is applied.
// To preserve the intended usage of '-f', where users may specify it multiple times to override different dimension names,
// To preserve the previous usage of '-f', where users may specify it multiple times to override different dimension names,
// we need to manually parse argv.
if (!ParseDimensionOverrideFromArgv(argc, utf8_argv_strings, "f", test_config.run_config.free_dim_name_overrides)) {
return false;
Expand Down
Loading