aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/assembly
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/assembly')
-rw-r--r--src/core/NEON/kernels/assembly/pool_common.hpp3
-rw-r--r--src/core/NEON/kernels/assembly/pooling.hpp6
2 files changed, 2 insertions, 7 deletions
diff --git a/src/core/NEON/kernels/assembly/pool_common.hpp b/src/core/NEON/kernels/assembly/pool_common.hpp
index a2d87e9382..cf133c38b2 100644
--- a/src/core/NEON/kernels/assembly/pool_common.hpp
+++ b/src/core/NEON/kernels/assembly/pool_common.hpp
@@ -68,8 +68,7 @@ public:
virtual ~IPoolingCommon() = default;
// Determine the amount of working space required.
- virtual size_t get_working_size(unsigned int num_threads) const = 0;
- virtual size_t get_working_size(unsigned int num_threads, unsigned int n_channels) const = 0;
+ virtual size_t get_working_size(unsigned int num_threads) const = 0;
// Execute pooling over the specified area of memory.
virtual void execute(const void *const input,
diff --git a/src/core/NEON/kernels/assembly/pooling.hpp b/src/core/NEON/kernels/assembly/pooling.hpp
index d64a59f4d0..2a11571742 100644
--- a/src/core/NEON/kernels/assembly/pooling.hpp
+++ b/src/core/NEON/kernels/assembly/pooling.hpp
@@ -139,11 +139,7 @@ public:
PoolingCommon(PoolingCommon &) = delete;
PoolingCommon &operator=(PoolingCommon &) = delete;
- size_t get_working_size(unsigned int, unsigned int) const override = 0;
- size_t get_working_size(unsigned int n_threads) const override
- {
- return this->get_working_size(n_threads, m_args.n_channels);
- }
+ size_t get_working_size(unsigned int) const override = 0;
// Execute pooling over the specified area of memory.
void execute(const void *const input,