Skip to content

Commit 596c2e8

Browse files
authored
[GPU] too big cn_unet memory consumption (#25502)
### Details: - ### Tickets: - reverting some changes made by 138396 - affects 131596 by 50GB mem usage instead 10GB
1 parent e62d0fa commit 596c2e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/intel_gpu/src/graph/primitive_inst.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2116,7 +2116,7 @@ memory::ptr primitive_inst::allocate_output(engine& _engine,
21162116
usm_device_allocatable = false;
21172117

21182118
bool reusable_across_network = (runtime_alloc && _node.is_dynamic_output_layout())
2119-
|| (!_node.is_dynamic_output_layout() && !user_requesting_mem_reuse_false(_node));
2119+
|| !user_requesting_mem_reuse_false(_node);
21202120

21212121
// Do not use memory pool for nodes from shape_of subgraphs, because such nodes mostly use CPU impls and may be executed in parallel with predecessors
21222122
// GPU kernels and cause accuracy problems. This significantly improves performance (because provides an ability not to synchronize shape_of subgraphs

0 commit comments

Comments
 (0)