aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NECol2Im.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NECol2Im.cpp')
-rw-r--r--src/runtime/NEON/functions/NECol2Im.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/NEON/functions/NECol2Im.cpp b/src/runtime/NEON/functions/NECol2Im.cpp
index 0706125157..fc61520f47 100644
--- a/src/runtime/NEON/functions/NECol2Im.cpp
+++ b/src/runtime/NEON/functions/NECol2Im.cpp
@@ -24,13 +24,12 @@
#include "arm_compute/runtime/NEON/functions/NECol2Im.h"
#include "src/core/NEON/kernels/NECol2ImKernel.h"
-#include "support/MemorySupport.h"
namespace arm_compute
{
void NECol2Im::configure(const ITensor *input, ITensor *output, const Size2D &convolved_dims)
{
- auto k = arm_compute::support::cpp14::make_unique<NECol2ImKernel>();
+ auto k = std::make_unique<NECol2ImKernel>();
k->configure(input, output, convolved_dims);
_kernel = std::move(k);
}