aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLAccumulate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLAccumulate.cpp')
-rw-r--r--src/runtime/CL/functions/CLAccumulate.cpp21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/runtime/CL/functions/CLAccumulate.cpp b/src/runtime/CL/functions/CLAccumulate.cpp
index d529d9402a..a81d1d042b 100644
--- a/src/runtime/CL/functions/CLAccumulate.cpp
+++ b/src/runtime/CL/functions/CLAccumulate.cpp
@@ -32,21 +32,36 @@ using namespace arm_compute;
void CLAccumulate::configure(const ICLTensor *input, ICLTensor *accum)
{
+ configure(CLKernelLibrary::get().get_compile_context(), input, accum);
+}
+
+void CLAccumulate::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *accum)
+{
auto k = arm_compute::support::cpp14::make_unique<CLAccumulateKernel>();
- k->configure(input, accum);
+ k->configure(compile_context, input, accum);
_kernel = std::move(k);
}
void CLAccumulateWeighted::configure(const ICLTensor *input, float alpha, ICLTensor *accum)
{
+ configure(CLKernelLibrary::get().get_compile_context(), input, alpha, accum);
+}
+
+void CLAccumulateWeighted::configure(const CLCompileContext &compile_context, const ICLTensor *input, float alpha, ICLTensor *accum)
+{
auto k = arm_compute::support::cpp14::make_unique<CLAccumulateWeightedKernel>();
- k->configure(input, alpha, accum);
+ k->configure(compile_context, input, alpha, accum);
_kernel = std::move(k);
}
void CLAccumulateSquared::configure(const ICLTensor *input, uint32_t shift, ICLTensor *accum)
{
+ configure(CLKernelLibrary::get().get_compile_context(), input, shift, accum);
+}
+
+void CLAccumulateSquared::configure(const CLCompileContext &compile_context, const ICLTensor *input, uint32_t shift, ICLTensor *accum)
+{
auto k = arm_compute::support::cpp14::make_unique<CLAccumulateSquaredKernel>();
- k->configure(input, shift, accum);
+ k->configure(compile_context, input, shift, accum);
_kernel = std::move(k);
}