| 46 | NEFill::~NEFill() = default; |
| 47 | |
| 48 | void NEFill::configure(ITensor *tensor, PixelValue constant_value) |
| 49 | { |
| 50 | ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, "NEFill::configure"); |
| 51 | ARM_COMPUTE_ERROR_ON_NULLPTR(tensor); |
| 52 | |
| 53 | _impl->tensor = tensor; |
| 54 | _impl->op = std::make_unique<cpu::CpuFill>(); |
| 55 | _impl->op->configure(tensor->info(), constant_value); |
| 56 | } |
| 57 | |
| 58 | void NEFill::run() |
| 59 | { |