change default value (#14142)

Signed-off-by: fishbell <bell.song@intel.com>

Signed-off-by: fishbell <bell.song@intel.com>
This commit is contained in:
yanlan song
2022-11-23 10:05:32 +08:00
committed by GitHub
parent 0c8a49034c
commit 8e4bd92d12
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ struct PluginConfig {
_disableAutoBatching(false),
_batchTimeout("1000"),
_devicePriority(""),
_modelPriority(0),
_modelPriority(1),
_deviceBindBuffer(false),
_logLevel("LOG_NONE") {
adjustKeyMapValues();

View File

@@ -77,7 +77,7 @@ INSTANTIATE_TEST_SUITE_P(smoke_AutoMultiCompileModelBehaviorTests,
const std::vector<ov::AnyMap> default_properties = {
{ov::enable_profiling(false)},
{ov::log::level("LOG_NONE")},
{ov::hint::model_priority(ov::hint::Priority::HIGH)},
{ov::hint::model_priority(ov::hint::Priority::MEDIUM)},
{ov::hint::allow_auto_batching(true)},
{ov::auto_batch_timeout("1000")},
{ov::intel_auto::device_bind_buffer(false)},