renaming
This commit is contained in:
parent
00a04a1931
commit
68d0e9958f
@ -47,22 +47,22 @@ constructor(scope: NoaScope, internal val tensorHandle: TensorHandle) :
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public fun copyToDouble(): NoaDoubleTensor = NoaDoubleTensor(
|
public fun asDouble(): NoaDoubleTensor = NoaDoubleTensor(
|
||||||
scope = scope,
|
scope = scope,
|
||||||
tensorHandle = JNoa.copyToDouble(this.tensorHandle)
|
tensorHandle = JNoa.copyToDouble(this.tensorHandle)
|
||||||
)
|
)
|
||||||
|
|
||||||
public fun copyToFloat(): NoaFloatTensor = NoaFloatTensor(
|
public fun asFloat(): NoaFloatTensor = NoaFloatTensor(
|
||||||
scope = scope,
|
scope = scope,
|
||||||
tensorHandle = JNoa.copyToFloat(this.tensorHandle)
|
tensorHandle = JNoa.copyToFloat(this.tensorHandle)
|
||||||
)
|
)
|
||||||
|
|
||||||
public fun copyToLong(): NoaLongTensor = NoaLongTensor(
|
public fun asLong(): NoaLongTensor = NoaLongTensor(
|
||||||
scope = scope,
|
scope = scope,
|
||||||
tensorHandle = JNoa.copyToLong(this.tensorHandle)
|
tensorHandle = JNoa.copyToLong(this.tensorHandle)
|
||||||
)
|
)
|
||||||
|
|
||||||
public fun copyToInt(): NoaIntTensor = NoaIntTensor(
|
public fun asInt(): NoaIntTensor = NoaIntTensor(
|
||||||
scope = scope,
|
scope = scope,
|
||||||
tensorHandle = JNoa.copyToInt(this.tensorHandle)
|
tensorHandle = JNoa.copyToInt(this.tensorHandle)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user