aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/NEON/kernels/NEReorgLayerKernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/NEON/kernels/NEReorgLayerKernel.h')
-rw-r--r--arm_compute/core/NEON/kernels/NEReorgLayerKernel.h23
1 files changed, 4 insertions, 19 deletions
diff --git a/arm_compute/core/NEON/kernels/NEReorgLayerKernel.h b/arm_compute/core/NEON/kernels/NEReorgLayerKernel.h
index 7e0fb4350d..076af4fd1c 100644
--- a/arm_compute/core/NEON/kernels/NEReorgLayerKernel.h
+++ b/arm_compute/core/NEON/kernels/NEReorgLayerKernel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -75,24 +75,9 @@ public:
void run(const Window &window, const ThreadInfo &info) override;
private:
- /** Template function to run the reorg
- *
- * @param[in] window Region on which to execute the kernel. (Must be a valid region of the window returned by window()).
- */
- template <typename T>
- void run_reorg(const Window &window);
-
- /** Common signature for all the specialised reorg functions
- *
- * @param[in] window Region on which to execute the kernel.
- */
- using ReorgFunctionPtr = void (NEReorgLayerKernel::*)(const Window &window);
-
-private:
- ReorgFunctionPtr _func;
- const ITensor *_input;
- ITensor *_output;
- int32_t _stride;
+ const ITensor *_input;
+ ITensor *_output;
+ int32_t _stride;
};
} // namespace arm_compute
#endif /*__ARM_COMPUTE_NEREORGLAYERKERNEL_H__ */