aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLChannelShuffleLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLChannelShuffleLayer.cpp')
-rw-r--r--src/runtime/CL/functions/CLChannelShuffleLayer.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/runtime/CL/functions/CLChannelShuffleLayer.cpp b/src/runtime/CL/functions/CLChannelShuffleLayer.cpp
index 2e1192a725..93ab7c7ddf 100644
--- a/src/runtime/CL/functions/CLChannelShuffleLayer.cpp
+++ b/src/runtime/CL/functions/CLChannelShuffleLayer.cpp
@@ -31,8 +31,13 @@ namespace arm_compute
{
void CLChannelShuffleLayer::configure(const ICLTensor *input, ICLTensor *output, unsigned int num_groups)
{
+ configure(CLKernelLibrary::get().get_compile_context(), input, output, num_groups);
+}
+
+void CLChannelShuffleLayer::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, unsigned int num_groups)
+{
auto k = arm_compute::support::cpp14::make_unique<CLChannelShuffleLayerKernel>();
- k->configure(input, output, num_groups);
+ k->configure(compile_context, input, output, num_groups);
_kernel = std::move(k);
}