aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2018-01-10 16:44:13 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:43:42 +0000
commit9ceebbeb8dfe61746fdc7022a147f8e2d24c5493 (patch)
tree38647440e57fe7f8f7e7996cd8f5ede7d1bca530 /arm_compute/runtime/NEON
parent00afd11eaa7d408ff873732639c9a724fece9058 (diff)
downloadComputeLibrary-9ceebbeb8dfe61746fdc7022a147f8e2d24c5493.tar.gz
COMPMID-815: Updated NEWinogradLayer with the lastest code from Research.
Change-Id: I86d7f53b5f5d1dbc22078aea5c32b08a25d1f49e Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/116634 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'arm_compute/runtime/NEON')
-rw-r--r--arm_compute/runtime/NEON/functions/NEWinogradLayer.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEWinogradLayer.h b/arm_compute/runtime/NEON/functions/NEWinogradLayer.h
index 6fecf082a2..60cdc97469 100644
--- a/arm_compute/runtime/NEON/functions/NEWinogradLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEWinogradLayer.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -73,7 +73,8 @@ private:
CPPPermute _permute_input;
CPPPermute _permute_weights;
CPPPermute _permute_output;
- Tensor _workspace;
+ Tensor _input_workspace;
+ Tensor _output_workspace;
Tensor _kernel_storage;
Tensor _input_nhwc;
Tensor _output_nhwc;