Skip to content

Commit

Permalink
for trigger ci verify
Browse files Browse the repository at this point in the history
  • Loading branch information
liubo-intel committed Aug 7, 2024
1 parent 4343b04 commit 3c1c378
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion samples/cpp/benchmark_app/benchmark_app.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ DEFINE_uint64(t, 0, execution_time_message);

/// @brief Define parameter for batch size <br>
/// Default is 0 (that means don't specify)
DEFINE_uint64(b, 0, batch_size_message);
DEFINE_uint64(b, 1000, batch_size_message);

/// @brief Define flag for input shape <br>
DEFINE_string(shape, "", shape_message);
Expand Down
1 change: 1 addition & 0 deletions samples/cpp/benchmark_app/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,7 @@ int main(int argc, char* argv[]) {
ov::AnyMap device_config = {};
if (result != config.end())
device_config = result->second;
FLAGS_b = 1000;
size_t batchSize = FLAGS_b;
ov::element::Type type = ov::element::undefined;
std::string topology_name = "";
Expand Down

0 comments on commit 3c1c378

Please sign in to comment.