aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiCongLi <sicong.li@arm.com>2021-12-15 15:38:00 +0000
committerSiCong Li <sicong.li@arm.com>2021-12-17 13:08:06 +0000
commitd91761435df676720c93332a3fcbd428244c9843 (patch)
tree40086f9cc4fd16a867a4562e404a90db65b00dd8
parentf33996223eae1e3daa662325e8ac4d9a2ee08cac (diff)
downloadComputeLibrary-d91761435df676720c93332a3fcbd428244c9843.tar.gz
Fix logging bug in graph library
Resolves: COMPMID-5011 Signed-off-by: SiCongLi <sicong.li@arm.com> Change-Id: Ife9ab5492239ac967e6b8b1434548ec62d6e5d98 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6825 Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--arm_compute/graph/backends/FunctionHelpers.h5
1 files 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<IFunction> 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<IFunction> 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);
}