| 96 | } |
| 97 | |
| 98 | void 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 |
nothing calls this directly
no test coverage detected