aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2021-02-19 18:16:44 +0000
committerManuel Bottini <manuel.bottini@arm.com>2021-03-12 16:17:06 +0000
commit3b131ab38fa337af7818d78200b0e7bdf89c5e69 (patch)
treebe9779c5647f712c5032c9aa32e8cbbb2e2d06bc /src/runtime/CL/functions
parent9e73c93bbd49fdd648d8f8cb77df46e7bbc9526d (diff)
downloadComputeLibrary-3b131ab38fa337af7818d78200b0e7bdf89c5e69.tar.gz
Port OpenCL Scale to new API
Partially resolves: COMPMID-4190 Change-Id: I680dd80fcbe4e7568511792c60a725b2646fa6ff Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5197 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: TeresaARM <teresa.charlinreyes@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/runtime/CL/functions')
-rw-r--r--src/runtime/CL/functions/CLScale.cpp45
1 files changed, 22 insertions, 23 deletions
diff --git a/src/runtime/CL/functions/CLScale.cpp b/src/runtime/CL/functions/CLScale.cpp
index 9862d0a1b3..cbd93c1086 100644
--- a/src/runtime/CL/functions/CLScale.cpp
+++ b/src/runtime/CL/functions/CLScale.cpp
@@ -23,17 +23,26 @@
*/
#include "arm_compute/runtime/CL/functions/CLScale.h"
+#include "arm_compute/core/CL/CLKernelLibrary.h"
#include "arm_compute/core/CL/ICLTensor.h"
-#include "arm_compute/core/Error.h"
-#include "arm_compute/core/Validate.h"
-#include "arm_compute/runtime/CL/CLScheduler.h"
+#include "arm_compute/core/KernelDescriptors.h"
+#include "src/core/CL/ICLKernel.h"
+#include "src/runtime/gpu/cl/operators/ClScale.h"
namespace arm_compute
{
+struct CLScale::Impl
+{
+ const ICLTensor *src{ nullptr };
+ ICLTensor *dst{ nullptr };
+ std::unique_ptr<opencl::ClScale> op{ nullptr };
+};
+
CLScale::CLScale()
- : _border_handler(std::make_unique<CLFillBorderKernel>()), _kernel()
+ : _impl(std::make_unique<Impl>())
{
}
+CLScale::~CLScale() = default;
void CLScale::configure(ICLTensor *input, ICLTensor *output, const ScaleKernelInfo &info)
{
@@ -42,33 +51,23 @@ void CLScale::configure(ICLTensor *input, ICLTensor *output, const ScaleKernelIn
void CLScale::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, const ScaleKernelInfo &info)
{
- auto k = std::make_unique<CLScaleKernel>();
- k->set_target(CLScheduler::get().target());
- k->configure(compile_context, input, output, info);
- _kernel = std::move(k);
+ _impl->src = input;
+ _impl->dst = output;
- // Tune kernels
- CLScheduler::get().tune_kernel_static(*_kernel);
-
- const DataLayout data_layout = info.data_layout == DataLayout::UNKNOWN ? input->info()->data_layout() : info.data_layout;
- if(data_layout == DataLayout::NCHW && !_kernel->border_size().empty())
- {
- _border_handler->configure(compile_context, input, _kernel->border_size(), info.border_mode, info.constant_border_value);
- }
+ _impl->op = std::make_unique<opencl::ClScale>();
+ _impl->op->configure(compile_context, input->info(), output->info(), info);
}
Status CLScale::validate(const ITensorInfo *input, const ITensorInfo *output, const ScaleKernelInfo &info)
{
- return CLScaleKernel::validate(input, output, info);
+ return opencl::ClScale::validate(input, output, info);
}
void CLScale::run()
{
- if(!_kernel->border_size().empty())
- {
- CLScheduler::get().enqueue(*_border_handler, false);
- }
- CLScheduler::get().enqueue(*_kernel);
+ ITensorPack pack;
+ pack.add_tensor(TensorType::ACL_SRC, _impl->src);
+ pack.add_tensor(TensorType::ACL_DST, _impl->dst);
+ _impl->op->run(pack);
}
-
} // namespace arm_compute