Class BatchMatrixTriangularSolve<T extends TNumber>
java.lang.Object
org.tensorflow.op.RawOp
org.tensorflow.op.linalg.BatchMatrixTriangularSolve<T>
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBatchMatrixTriangularSolve.Inputs<T extends TNumber>static classOptional attributes forBatchMatrixTriangularSolve -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe name of this op, as known by TensorFlow core engine -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSets the adjoint option.asOutput()Returns the symbolic handle of the tensor.static <T extends TNumber>
BatchMatrixTriangularSolve<T> create(Scope scope, Operand<T> matrix, Operand<T> rhs, BatchMatrixTriangularSolve.Options... options) Factory method to create a class wrapping a new BatchMatrixTriangularSolve operation.Sets the lower option.output()Gets output.
-
Field Details
-
OP_NAME
The name of this op, as known by TensorFlow core engine- See Also:
-
-
Constructor Details
-
BatchMatrixTriangularSolve
-
-
Method Details
-
create
@Endpoint(describeByClass=true) public static <T extends TNumber> BatchMatrixTriangularSolve<T> create(Scope scope, Operand<T> matrix, Operand<T> rhs, BatchMatrixTriangularSolve.Options... options) Factory method to create a class wrapping a new BatchMatrixTriangularSolve operation.- Type Parameters:
T- data type forBatchMatrixTriangularSolveoutput and operands- Parameters:
scope- current scopematrix- The matrix valuerhs- The rhs valueoptions- carries optional attribute values- Returns:
- a new instance of BatchMatrixTriangularSolve
-
lower
Sets the lower option.- Parameters:
lower- the lower option- Returns:
- this Options instance.
-
adjoint
Sets the adjoint option.- Parameters:
adjoint- the adjoint option- Returns:
- this Options instance.
-
output
-
asOutput
Description copied from interface:OperandReturns the symbolic handle of the tensor.Inputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.
-