aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp')
-rw-r--r--src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp b/src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp
index 8ecc114343..bbe9b487e5 100644
--- a/src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp
+++ b/src/runtime/CL/functions/CLConvertFullyConnectedWeights.cpp
@@ -25,8 +25,6 @@
#include "src/core/CL/kernels/CLConvertFullyConnectedWeightsKernel.h"
#include "src/core/CL/kernels/CLFillBorderKernel.h"
-#include "support/MemorySupport.h"
-
namespace arm_compute
{
void CLConvertFullyConnectedWeights::configure(const ICLTensor *input, ICLTensor *output, const TensorShape &original_input_shape,
@@ -38,7 +36,7 @@ void CLConvertFullyConnectedWeights::configure(const ICLTensor *input, ICLTensor
void CLConvertFullyConnectedWeights::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const TensorShape &original_input_shape,
DataLayout data_layout)
{
- auto k = arm_compute::support::cpp14::make_unique<CLConvertFullyConnectedWeightsKernel>();
+ auto k = std::make_unique<CLConvertFullyConnectedWeightsKernel>();
k->configure(compile_context, input, output, original_input_shape, data_layout);
_kernel = std::move(k);
}