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

Method configure

src/gpu/cl/operators/ClActivation.cpp:37–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35namespace opencl
36{
37void 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
48Status ClActivation::validate(const ITensorInfo *src, const ITensorInfo *dst, const ActivationLayerInfo &act_info)
49{

Callers 1

create_activationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected