aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/operators/CpuConv2d.cpp
diff options
context:
space:
mode:
authorGunes Bayir <gunes.bayir@arm.com>2023-09-14 15:14:48 +0100
committerGunes Bayir <gunes.bayir@arm.com>2023-09-15 13:23:31 +0000
commitc071328414780e2c3841a1adaac1b1f45a411724 (patch)
tree1197d99a07ff950c73372ddf4b79154e7f08d0cf /src/cpu/operators/CpuConv2d.cpp
parente87fa660e188007391f0584a56c8970665780684 (diff)
downloadComputeLibrary-c071328414780e2c3841a1adaac1b1f45a411724.tar.gz
Fix include dependencies for mass reformatting patch
This patch fixes some include dependencies in certain files that caused build failures in https://review.mlplatform.org/c/ml/ComputeLibrary/+/10287. It also circumvents some clang-format glitches. Signed-off-by: Gunes Bayir <gunes.bayir@arm.com> Change-Id: I8e9d3307edd2d1afd17c685c9bc9429624130e5a Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10313 Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: <felixjohnny.thomasmathibalan@arm.com> Reviewed-by: Viet-Hoa Do <viet-hoa.do@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/cpu/operators/CpuConv2d.cpp')
-rw-r--r--src/cpu/operators/CpuConv2d.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/operators/CpuConv2d.cpp b/src/cpu/operators/CpuConv2d.cpp
index 447b740989..16ac16b3ba 100644
--- a/src/cpu/operators/CpuConv2d.cpp
+++ b/src/cpu/operators/CpuConv2d.cpp
@@ -215,6 +215,7 @@ ConvolutionMethod CpuConv2d::get_convolution_method(const ITensorInfo *input, co
}
}
#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
+
// For 1x1 convolutions run the default GEMM
if(weights->dimension(idx_w) == 1 && weights->dimension(idx_h) == 1)
{