@Namespace(value="tensorflow::ops") @NoOffset public static class tensorflow.Cholesky extends Pointer
Computes the Cholesky decomposition of one or more square matrices.
The input is a tensor of shape [..., M, M] whose inner-most 2 dimensions
form square matrices.
The input has to be symmetric and positive definite. Only the lower-triangular
part of the input will be used for this operation. The upper-triangular part
will not be read.
The output is a tensor of the same shape as the input
containing the Cholesky decompositions for all input submatrices [..., :, :].
**Note**: The gradient computation on GPU is faster for large matrices but
not for large batch dimensions when the submatrices are small. In this
case it might be faster to use the CPU.
Arguments:
* scope: A Scope object
* input: Shape is [..., M, M].
Returns:
* Output: Shape is [..., M, M].
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator| Constructor and Description |
|---|
Cholesky(Pointer p)
Pointer cast constructor.
|
Cholesky(tensorflow.Scope scope,
tensorflow.Input input) |
| Modifier and Type | Method and Description |
|---|---|
tensorflow.Input |
asInput() |
tensorflow.Output |
asOutput() |
tensorflow.Node |
node() |
tensorflow.Operation |
operation() |
tensorflow.Cholesky |
operation(tensorflow.Operation operation) |
tensorflow.Output |
output() |
tensorflow.Cholesky |
output(tensorflow.Output output) |
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, position, put, realloc, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zeropublic Cholesky(Pointer p)
Pointer.Pointer(Pointer).public Cholesky(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input)
@ByVal @Name(value="operator tensorflow::Output") public tensorflow.Output asOutput()
@ByVal @Name(value="operator tensorflow::Input") public tensorflow.Input asInput()
public tensorflow.Node node()
@ByRef public tensorflow.Operation operation()
public tensorflow.Cholesky operation(tensorflow.Operation operation)
@ByRef public tensorflow.Output output()
public tensorflow.Cholesky output(tensorflow.Output output)
Copyright © 2019. All rights reserved.