aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLComputeAllAnchors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLComputeAllAnchors.cpp')
-rw-r--r--src/runtime/CL/functions/CLComputeAllAnchors.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/runtime/CL/functions/CLComputeAllAnchors.cpp b/src/runtime/CL/functions/CLComputeAllAnchors.cpp
index b71e89c804..62714fed5c 100644
--- a/src/runtime/CL/functions/CLComputeAllAnchors.cpp
+++ b/src/runtime/CL/functions/CLComputeAllAnchors.cpp
@@ -29,9 +29,14 @@ namespace arm_compute
{
void CLComputeAllAnchors::configure(const ICLTensor *anchors, ICLTensor *all_anchors, const ComputeAnchorsInfo &info)
{
+ configure(CLKernelLibrary::get().get_compile_context(), anchors, all_anchors, info);
+}
+
+void CLComputeAllAnchors::configure(const CLCompileContext &compile_context, const ICLTensor *anchors, ICLTensor *all_anchors, const ComputeAnchorsInfo &info)
+{
// Configure ComputeAllAnchors kernel
auto k = arm_compute::support::cpp14::make_unique<CLComputeAllAnchorsKernel>();
- k->configure(anchors, all_anchors, info);
+ k->configure(compile_context, anchors, all_anchors, info);
_kernel = std::move(k);
}