Try to fix Windows post commit (#9176)

This commit is contained in:
Ilya Churaev 2021-12-13 15:40:41 +03:00 committed by GitHub
parent 5124d95df7
commit 5c5ccb98eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ public:
TestCase(const std::shared_ptr<Function>& function, const std::string& dev = "TEMPLATE") : m_function{function} {
try {
// Register template plugin
m_core.register_plugin("templatePlugin", "TEMPLATE");
m_core.register_plugin(std::string("templatePlugin") + IE_BUILD_POSTFIX, "TEMPLATE");
} catch (...) {
}
m_request = m_core.compile_model(function, dev).create_infer_request();