aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h b/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h
index 5b5bb5cb78..7973a6e2e1 100644
--- a/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020 Arm Limited.
+ * Copyright (c) 2020-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -32,12 +32,12 @@ namespace arm_compute
{
class ITensor;
class ITensorInfo;
-class NEMemsetKernel;
+class NEFill;
class NEMaxUnpoolingLayerKernel;
/** Function to perform MaxUnpooling. This function calls the following NEON kernels:
*
- * -# @ref NEMemsetKernel
+ * -# @ref NEFillKernel
* -# @ref NEMaxUnpoolingLayerKernel
*/
class NEMaxUnpoolingLayer : public IFunction
@@ -82,7 +82,7 @@ public:
void run() override;
private:
- std::unique_ptr<NEMemsetKernel> _memset_kernel;
+ std::unique_ptr<NEFill> _fill_func;
std::unique_ptr<NEMaxUnpoolingLayerKernel> _unpooling_layer_kernel;
};
}