aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NESobel7x7.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NESobel7x7.cpp')
-rw-r--r--src/runtime/NEON/functions/NESobel7x7.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/runtime/NEON/functions/NESobel7x7.cpp b/src/runtime/NEON/functions/NESobel7x7.cpp
index bc5f87c1ec..7b1a975951 100644
--- a/src/runtime/NEON/functions/NESobel7x7.cpp
+++ b/src/runtime/NEON/functions/NESobel7x7.cpp
@@ -31,7 +31,6 @@
#include "arm_compute/runtime/TensorAllocator.h"
#include "src/core/NEON/kernels/NEFillBorderKernel.h"
#include "src/core/NEON/kernels/NESobel7x7Kernel.h"
-#include "support/MemorySupport.h"
namespace arm_compute
{
@@ -50,9 +49,9 @@ void NESobel7x7::configure(ITensor *input, ITensor *output_x, ITensor *output_y,
const bool run_sobel_y = output_y != nullptr;
TensorInfo tensor_info(input->info()->tensor_shape(), Format::S32);
- _sobel_hor = arm_compute::support::cpp14::make_unique<NESobel7x7HorKernel>();
- _sobel_vert = arm_compute::support::cpp14::make_unique<NESobel7x7VertKernel>();
- _border_handler = arm_compute::support::cpp14::make_unique<NEFillBorderKernel>();
+ _sobel_hor = std::make_unique<NESobel7x7HorKernel>();
+ _sobel_vert = std::make_unique<NESobel7x7VertKernel>();
+ _border_handler = std::make_unique<NEFillBorderKernel>();
if(run_sobel_x && run_sobel_y)
{