| 70 | } |
| 71 | |
| 72 | void CLQLSTMLayer::TensorCopyKernel::configure(ICLTensor &src, ICLTensor &dst) |
| 73 | { |
| 74 | ARM_COMPUTE_ERROR_THROW_ON(CLQLSTMLayer::TensorCopyKernel::validate(*src.info(), *dst.info())); |
| 75 | _src = &src; |
| 76 | _dst = &dst; |
| 77 | _row_size = std::min(_src->info()->tensor_shape().x(), _dst->info()->tensor_shape().x()); |
| 78 | _window = calculate_max_window(*_src->info(), Steps()); |
| 79 | } |
| 80 | |
| 81 | void CLQLSTMLayer::TensorCopyKernel::run() |
| 82 | { |
no test coverage detected