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

Method configure

src/runtime/NEON/functions/NEQLSTMLayer.cpp:96–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96void NEQLSTMLayer::TensorCopyKernel::configure(ITensor &src, ITensor &dst)
97{
98 ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU,
99 "NEQLSTMLayer::TensorCopyKernel::configure");
100 ARM_COMPUTE_ERROR_THROW_ON(NEQLSTMLayer::TensorCopyKernel::validate(*src.info(), *dst.info()));
101 ARM_COMPUTE_LOG_PARAMS(src, dst);
102
103 _src = &src;
104 _dst = &dst;
105 _row_size = std::min(_src->info()->tensor_shape().x(), _dst->info()->tensor_shape().x());
106 _window = calculate_max_window(*_src->info(), Steps());
107}
108
109void NEQLSTMLayer::TensorCopyKernel::run()
110{

Callers 2

configure_layer_normMethod · 0.45
configure_mmMethod · 0.45

Calls 15

StepsClass · 0.85
quantize_qsymm16Function · 0.85
lowestFunction · 0.85
powFunction · 0.85
projection_biasMethod · 0.80
projection_weightsMethod · 0.80
use_layer_normMethod · 0.80

Tested by

no test coverage detected