From 73781d96799063f861dfe06a933ac7ab69ca877a Mon Sep 17 00:00:00 2001 From: chenjiaoAngel Date: Wed, 26 Aug 2020 17:18:21 +0800 Subject: [PATCH] fix comment. test=develop --- lite/backends/arm/math/conv5x5s2_depthwise_fp32.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lite/backends/arm/math/conv5x5s2_depthwise_fp32.cc b/lite/backends/arm/math/conv5x5s2_depthwise_fp32.cc index 0148916a0b..3332bd6e35 100644 --- a/lite/backends/arm/math/conv5x5s2_depthwise_fp32.cc +++ b/lite/backends/arm/math/conv5x5s2_depthwise_fp32.cc @@ -13,6 +13,7 @@ // limitations under the License. #include +#include "lite/api/paddle_place.h" #include "lite/backends/arm/math/conv_depthwise.h" namespace paddle { @@ -168,7 +169,7 @@ void conv_depthwise_5x5s2_fp32(float* dout, ctx); break; default: - LOG(FATAL) << "this act_type: " << static_cast(act_type) + LOG(FATAL) << "this act_type: " << ActivationTypeToStr(act_type) << " fuse not support"; } } else { -- GitLab