From d91761435df676720c93332a3fcbd428244c9843 Mon Sep 17 00:00:00 2001 From: SiCongLi Date: Wed, 15 Dec 2021 15:38:00 +0000 Subject: Fix logging bug in graph library Resolves: COMPMID-5011 Signed-off-by: SiCongLi Change-Id: Ife9ab5492239ac967e6b8b1434548ec62d6e5d98 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6825 Reviewed-by: Gian Marco Iodice Reviewed-by: Giorgio Arena Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/graph/backends/FunctionHelpers.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/arm_compute/graph/backends/FunctionHelpers.h b/arm_compute/graph/backends/FunctionHelpers.h index a7e52d4d6d..803283e20d 100644 --- a/arm_compute/graph/backends/FunctionHelpers.h +++ b/arm_compute/graph/backends/FunctionHelpers.h @@ -630,7 +630,7 @@ std::unique_ptr create_fused_convolution_with_post_op(FusedConvolutio << " Output shape: " << output->info()->tensor_shape() << qss.str() << (fused_act.enabled() ? " " + to_string(fused_act.activation()) : "") - << " Post ops" << post_ops; + << " Post ops" << post_ops << std::endl); return std::move(func); } @@ -713,8 +713,7 @@ std::unique_ptr create_fused_convolution_batch_normalization_with_pos << " Input shape: " << input->info()->tensor_shape() << " Weights shape: " << weights->info()->tensor_shape() << " Output shape: " << output->info()->tensor_shape() - << (fused_act.enabled() ? " " + to_string(fused_act.activation()) : "") - << " Post Ops:" << post_ops; + << " Post Ops:" << post_ops << std::endl); return std::move(func); } -- cgit v1.2.1