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 30c6821 commit 682ae80Copy full SHA for 682ae80
backends/openvino/runtime/OpenvinoBackend.cpp
@@ -82,8 +82,7 @@ exr::Result<exr::DelegateHandle*> OpenvinoBackend::init(
82
83
// Allocate execution handle
84
exr::MemoryAllocator* allocator = context.get_runtime_allocator();
85
- ExecutionHandle* handle =
86
- allocator->allocateInstance<ExecutionHandle>();
+ ExecutionHandle* handle = allocator->allocateInstance<ExecutionHandle>();
87
new (handle) ExecutionHandle;
88
handle->compiled_model = std::make_shared<ov::CompiledModel>(compiled_model);
89
handle->infer_request = infer_request;
0 commit comments