| 119 | } |
| 120 | |
| 121 | void ClIndirectConv2d::run(ITensorPack &tensors) |
| 122 | { |
| 123 | CLAuxTensorHandler indirect_buffer(offset_int_vec(IndirectBuffer), _indirect_buffer, tensors, true); |
| 124 | |
| 125 | prepare(tensors); |
| 126 | |
| 127 | ITensorPack indirect_conv2d_pack(tensors); |
| 128 | indirect_conv2d_pack.add_const_tensor(ACL_SRC_3, indirect_buffer.get()); |
| 129 | |
| 130 | // Run indirect convolution |
| 131 | CLScheduler::get().enqueue_op(*_indirect_conv_kernel, indirect_conv2d_pack, true); |
| 132 | } |
| 133 | |
| 134 | void ClIndirectConv2d::prepare(ITensorPack &constants) |
| 135 | { |
nothing calls this directly
no test coverage detected