aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLGEMMTranspose1xW.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLGEMMTranspose1xW.cpp')
-rw-r--r--src/runtime/CL/functions/CLGEMMTranspose1xW.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/CL/functions/CLGEMMTranspose1xW.cpp b/src/runtime/CL/functions/CLGEMMTranspose1xW.cpp
index 8f8a19e709..d054e01611 100644
--- a/src/runtime/CL/functions/CLGEMMTranspose1xW.cpp
+++ b/src/runtime/CL/functions/CLGEMMTranspose1xW.cpp
@@ -25,14 +25,14 @@
#include "arm_compute/core/CL/ICLTensor.h"
#include "arm_compute/core/CL/kernels/CLGEMMTranspose1xWKernel.h"
-#include "arm_compute/core/Helpers.h"
#include "arm_compute/core/Types.h"
+#include "support/ToolchainSupport.h"
using namespace arm_compute;
void CLGEMMTranspose1xW::configure(const ICLTensor *input, ICLTensor *output)
{
- auto k = arm_compute::cpp14::make_unique<CLGEMMTranspose1xWKernel>();
+ auto k = arm_compute::support::cpp14::make_unique<CLGEMMTranspose1xWKernel>();
k->configure(input, output);
_kernel = std::move(k);
} \ No newline at end of file