Add tensor to tensor pack * * @param[in] slot_id Slot id of the tensor in respect with the operator * @param[in] tensor Tensor to be added in the pack * * @return Status code */
| 725 | * @return Status code |
| 726 | */ |
| 727 | StatusCode add(Tensor &tensor, int32_t slot_id) |
| 728 | { |
| 729 | return detail::as_enum<StatusCode>(AclPackTensor(_object.get(), tensor.get(), slot_id)); |
| 730 | } |
| 731 | /** Add a list of tensors to a tensor pack |
| 732 | * |
| 733 | * @param[in] packed Pair packs to be added |
nothing calls this directly
no test coverage detected