Copy array to target. @param target The target array to be copied, must have same shape as this array. @return target
(TensorBase target)
| 59 | * @return target |
| 60 | */ |
| 61 | public TensorBase copyTo(TensorBase target) { |
| 62 | Base.checkCall(Base._LIB.tvmFFIDLTensorCopyFromTo(this.dltensorHandle, target.dltensorHandle)); |
| 63 | return target; |
| 64 | } |
| 65 | } |