clean AB property from virtual plugin and core global config (#16877)

* Benchmark_app set ov::hint::allow_auto_batching through compile_model

* Remove the process about allow_auto_batching in set_property of core

* Remove allow_auto_batching and auto_batch_timeout property from AUTO plugin

* Reserve the info logs and add API to check auto_batching

* Update test case, rm AB property test from core config tests

* Update some API in AUTO plugin config
This commit is contained in:
Wang Wangwang
2023-04-12 21:37:57 +08:00
committed by GitHub
parent fb49228fec
commit c2c2143f45
8 changed files with 14 additions and 68 deletions

View File

@@ -565,7 +565,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));
device_config.insert(ov::hint::allow_auto_batching(false));
}
bool isDynamicNetwork = false;