aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2018-09-19 11:33:03 +0100
committerAnthony Barbier <Anthony.barbier@arm.com>2018-11-08 09:08:50 +0000
commita518f3009a921d1aa21953bc72f8ce00a69af050 (patch)
tree4394f1eee44b5c561c335daefa4e6b7d52767ab6 /arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h
parentbdbbbe860cecacaa911578520355c6770475695a (diff)
downloadComputeLibrary-a518f3009a921d1aa21953bc72f8ce00a69af050.tar.gz
COMPMID-1773: Replaced Gemm wrapper for NEGEMM in NEWinograd
Change-Id: I68c648a5246fcdc67a496602089f93d65eb1d601
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h b/arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h
index 5da63311e0..292c70b87c 100644
--- a/arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h
@@ -31,7 +31,8 @@
#include "arm_compute/runtime/CPP/functions/CPPPermute.h"
#include "arm_compute/runtime/MemoryGroup.h"
#include "arm_compute/runtime/NEON/functions/NEActivationLayer.h"
-#include "arm_compute/runtime/NEON/functions/NEGEMMAssemblyDispatch.h"
+#include "arm_compute/runtime/NEON/functions/NEGEMM.h"
+
#include "arm_compute/runtime/Tensor.h"
#include <memory>
@@ -103,7 +104,7 @@ public:
private:
MemoryGroup _memory_group;
- NEGEMMAssemblyDispatch _asm_glue;
+ NEGEMM _gemm_function;
std::unique_ptr<INEKernel> _transform_input_kernel;
std::unique_ptr<INEKernel> _transform_output_kernel;
std::unique_ptr<INEKernel> _transform_weights_kernel;