Skip to content

Commit

Permalink
Fix build error issue
Browse files Browse the repository at this point in the history
  • Loading branch information
riverlijunjie committed May 7, 2024
1 parent 7ea460a commit 9a2f0b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/thirdparty/onednn
2 changes: 1 addition & 1 deletion src/plugins/intel_npu/thirdparty/level-zero-ext
Submodule level-zero-ext updated 1 files
+4 −80 ze_graph_ext.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ class AutoBatching_Test : public OVPluginTestBase,
config.insert(ov::auto_batch_timeout(1));

// set batch size
config.insert(ov::device::properties(target_device, ov::hint::num_requests(num_batch)));
config.insert(
ov::device::properties(target_device, ov::hint::num_requests(static_cast<uint32_t>(num_batch))));
auto compiled_model =
core->compile_model(model, std::string(ov::test::utils::DEVICE_BATCH) + ":" + target_device, config);

Expand Down

0 comments on commit 9a2f0b2

Please sign in to comment.