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

Method run

src/gpu/cl/operators/ClDirectConv2d.cpp:133–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133void ClDirectConv2d::run(ITensorPack &tensors)
134{
135 // Run border handler
136 CLScheduler::get().enqueue_op(*_src_border_handler.get(), tensors, false);
137 // Run direct convolution
138 CLScheduler::get().enqueue_op(*_direct_conv_kernel.get(), tensors, false);
139 // Run activation kernel
140 if (_activation_kernel)
141 {
142 auto act_pack = select_activation_src_dst(tensors);
143 CLScheduler::get().enqueue_op(*_activation_kernel.get(), act_pack, false);
144 }
145}
146} // namespace opencl
147} // namespace arm_compute

Callers

nothing calls this directly

Calls 3

enqueue_opMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected