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

Method run

src/gpu/cl/operators/ClGemmLowpOutputStage.cpp:98–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98void ClGemmLowpOutputStage::run(ITensorPack &tensors)
99{
100 const ITensor *src = tensors.get_const_tensor(ACL_SRC);
101 const ITensor *bias = tensors.get_const_tensor(ACL_BIAS);
102 ITensor *dst = tensors.get_tensor(ACL_DST);
103
104 ITensorPack pack{{ACL_SRC, src}, {ACL_BIAS, bias}, {ACL_DST, dst}};
105 CLScheduler::get().enqueue_op(*_kernel, pack, true);
106}
107} // namespace opencl
108} // namespace arm_compute

Callers

nothing calls this directly

Calls 3

get_const_tensorMethod · 0.80
enqueue_opMethod · 0.80
get_tensorMethod · 0.45

Tested by

no test coverage detected