aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEDepthConcatenate.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEDepthConcatenate.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEDepthConcatenate.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEDepthConcatenate.h b/arm_compute/runtime/NEON/functions/NEDepthConcatenate.h
index 02ff1227c7..cc65099575 100644
--- a/arm_compute/runtime/NEON/functions/NEDepthConcatenate.h
+++ b/arm_compute/runtime/NEON/functions/NEDepthConcatenate.h
@@ -26,14 +26,15 @@
#include "arm_compute/runtime/IFunction.h"
+#include "arm_compute/core/NEON/kernels/NEDepthConcatenateKernel.h"
+#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
+
#include <memory>
#include <vector>
namespace arm_compute
{
class ITensor;
-class NEDepthConcatenateKernel;
-class NEFillBorderKernel;
/** Basic function to execute concatenate tensors along z axis. This function calls the following kernels:
*
@@ -48,8 +49,8 @@ public:
NEDepthConcatenate();
/** Initialise the kernel's inputs vector and output.
*
- * @param[in,out] inputs_vector The vectors containing all the tensors to concatenate. Data types supported: F32.
- * @param[out] output Output tensor. Data types supported: F32.
+ * @param[in,out] inputs_vector The vectors containing all the tensors to concatenate. Data types supported: QS8/QS16/F16/F32.
+ * @param[out] output Output tensor. Data types supported: Same as @p inputs_vector.
*/
void configure(std::vector<ITensor *> inputs_vector, ITensor *output);