MCPcopy Index your code
hub / github.com/apache/tvm / copyTo

Method copyTo

jvm/core/src/main/java/org/apache/tvm/TensorBase.java:61–64  ·  view source on GitHub ↗

Copy array to target. @param target The target array to be copied, must have same shape as this array. @return target

(TensorBase target)

Source from the content-addressed store, hash-verified

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}

Callers 2

invokeMethod · 0.80
internalMethod · 0.80

Calls 2

checkCallMethod · 0.95

Tested by 1

invokeMethod · 0.64