aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.cpp')
-rw-r--r--src/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.cpp b/src/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.cpp
index 877f81ae9b..d085357eaa 100644
--- a/src/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.cpp
+++ b/src/runtime/GLES_COMPUTE/functions/GCGEMMTranspose1xW.cpp
@@ -26,13 +26,12 @@
#include "arm_compute/core/GLES_COMPUTE/IGCTensor.h"
#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMTranspose1xWKernel.h"
#include "arm_compute/core/Types.h"
-#include "support/MemorySupport.h"
using namespace arm_compute;
void GCGEMMTranspose1xW::configure(const IGCTensor *input, IGCTensor *output)
{
- auto k = arm_compute::support::cpp14::make_unique<GCGEMMTranspose1xWKernel>();
+ auto k = std::make_unique<GCGEMMTranspose1xWKernel>();
k->configure(input, output);
_kernel = std::move(k);
}