We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf894e commit 2f9c8f0Copy full SHA for 2f9c8f0
src/tests/functional/shared_test_classes/src/base/ov_subgraph.cpp
@@ -306,7 +306,7 @@ void SubgraphBaseTest::compile_model() {
306
std::cout << "[ PLUGIN ] `SubgraphBaseTest::compile_model()` is finished successfully. Duration is " << duration.count() << "s" << std::endl;
307
}
308
try {
309
- inference_precision = core->get_property(targetDevice, ov::hint::inference_precision);
+ inference_precision = compiledModel.get_property(ov::hint::inference_precision);
310
} catch (std::exception& e) {
311
std::cout << "[ WARNING ] Impossible to get Inference Precision with exception: " << e.what() << std::endl;
312
0 commit comments