(long handle, boolean isView, TVMType dtype, Device dev)
| 30 | private final Device device; |
| 31 | |
| 32 | Tensor(long handle, boolean isView, TVMType dtype, Device dev) { |
| 33 | super(handle, isView); |
| 34 | this.dtype = dtype; |
| 35 | this.device = dev; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Copy from a native array. |
no outgoing calls