diff --git a/samples/cpp/benchmark_app/main.cpp b/samples/cpp/benchmark_app/main.cpp index 33334e19cb0..3e0ba1bf125 100644 --- a/samples/cpp/benchmark_app/main.cpp +++ b/samples/cpp/benchmark_app/main.cpp @@ -600,6 +600,7 @@ int main(int argc, char* argv[]) { // If set batch size, disable the auto batching if (FLAGS_b > 0) { + slog::warn << "Batch size is set. Auto batching will be disabled" << slog::endl; core.set_property(ov::hint::allow_auto_batching(false)); } diff --git a/tools/benchmark_tool/openvino/tools/benchmark/main.py b/tools/benchmark_tool/openvino/tools/benchmark/main.py index d0814975fe3..7eb3f8f54f6 100644 --- a/tools/benchmark_tool/openvino/tools/benchmark/main.py +++ b/tools/benchmark_tool/openvino/tools/benchmark/main.py @@ -332,6 +332,7 @@ def main(): ## If set batch size, disable the auto batching if args.batch_size: + logger.warning("Batch size is set. Auto batching will be disabled") benchmark.set_allow_auto_batching(False) topology_name = ""