Skip to content

Commit 759091a

Browse files
committed
[GPU] Fix conv fusing logic
Signed-off-by: Min, Byungil <byungil.min@intel.com>
1 parent 765016d commit 759091a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/intel_gpu/src/graph/graph_optimizer/prepare_primitive_fusing.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ void prepare_primitive_fusing::fuse_simple_primitives(program &p) {
743743
return;
744744
}
745745

746-
if (activation_func == cldnn::activation_func::relu_negative_slope && !additional_params_input.empty() &&
746+
if (activation_func == cldnn::activation_func::relu_negative_slope &&
747747
input.get_output_layout().batch() > 1 && input.is_type<convolution>()) {
748748
return;
749749
}

0 commit comments

Comments
 (0)