From 50e7595cbaab6bc2027240e5a296c15d3cfdca51 Mon Sep 17 00:00:00 2001 From: eclipsess Date: Fri, 26 Oct 2018 15:58:07 +0800 Subject: [PATCH] add some annotations --- src/operators/kernel/central-arm-func/pool_arm_func.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/operators/kernel/central-arm-func/pool_arm_func.h b/src/operators/kernel/central-arm-func/pool_arm_func.h index 1c22a2646e..f1065d4571 100644 --- a/src/operators/kernel/central-arm-func/pool_arm_func.h +++ b/src/operators/kernel/central-arm-func/pool_arm_func.h @@ -83,6 +83,7 @@ void PoolCompute(const PoolParam ¶m) { #if __aarch64__ PoolBasic(pooling_type, ksize, strides, paddings, in_x, out); #else + /// todo: fix bug in Pool2x2 if (pooling_type == "max") { math::Pool2x2Maxs2p0(strides, paddings, in_x, out); } else if (pooling_type == "avg") { -- GitLab