MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / configure

Method configure

src/runtime/NEON/functions/NEFill.cpp:48–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46NEFill::~NEFill() = default;
47
48void 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
58void NEFill::run()
59{

Callers

nothing calls this directly

Calls 1

infoMethod · 0.45

Tested by

no test coverage detected