| 35 | namespace opencl |
| 36 | { |
| 37 | void ClActivation::configure(const ClCompileContext &compile_context, |
| 38 | ITensorInfo *src, |
| 39 | ITensorInfo *dst, |
| 40 | const ActivationLayerInfo &act_info) |
| 41 | { |
| 42 | ARM_COMPUTE_LOG_PARAMS(src, dst, act_info); |
| 43 | auto k = std::make_unique<kernels::ClActivationKernel>(); |
| 44 | k->configure(compile_context, src, dst, act_info); |
| 45 | _kernel = std::move(k); |
| 46 | } |
| 47 | |
| 48 | Status ClActivation::validate(const ITensorInfo *src, const ITensorInfo *dst, const ActivationLayerInfo &act_info) |
| 49 | { |