From f054c210e493111061a458b887f7c4edaca06a9f Mon Sep 17 00:00:00 2001 From: Forrest Iandola Date: Mon, 16 Oct 2017 00:44:24 -0700 Subject: [PATCH] fix comment typo kernerl's --> kernel's --- src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp b/src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp index 2766d698d..66d6d1fd4 100644 --- a/src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp +++ b/src/core/NEON/kernels/NEDirectConvolutionLayerKernel.cpp @@ -1082,7 +1082,7 @@ public: the third thread [16,24] and the fourth thread [25,31]. The algorithm outer loop iterates over Z, P, Y, X where P is the depth/3rd dimension of each kernel. This order is not arbitrary, the main benefit of this - is that we setup the neon registers containing the kernerl's values only once and then compute each XY using the preloaded registers as opposed as doing this for every XY value. + is that we setup the neon registers containing the kernel's values only once and then compute each XY using the preloaded registers as opposed as doing this for every XY value. The algorithm does not require allocating any additional memory amd computes the results directly in-place in two stages: 1) Convolve plane 0 with kernel 0 and initialize the corresponding output plane with these values. -- 2.34.1