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 a634b38 commit e3e2fb8Copy full SHA for e3e2fb8
src/plugins/intel_gpu/src/plugin/sync_infer_request.cpp
@@ -402,6 +402,8 @@ void SyncInferRequest::wait() {
402
need_reallocate = usm_host_tensor->get_impl()->get_original_memory()->size() < output_memory->size();
403
else if (!is_remote_tensor_impl && output_memory)
404
need_reallocate = output_tensor_wrapper.actual_size < output_memory->size();
405
+ else if (is_remote_tensor_impl && output_memory)
406
+ need_reallocate = false;
407
408
if (need_reallocate) {
409
std::string internal_name = m_output_names_map.at(port_idx);
0 commit comments