Class BatchMatrixTriangularSolve<T extends TNumber>

java.lang.Object
org.tensorflow.op.RawOp
org.tensorflow.op.linalg.BatchMatrixTriangularSolve<T>
All Implemented Interfaces:
Shaped, Op, Operand<T>

@Operator(group="linalg") public final class BatchMatrixTriangularSolve<T extends TNumber> extends RawOp implements Operand<T>
The BatchMatrixTriangularSolve operation
  • Field Details

  • Constructor Details

    • BatchMatrixTriangularSolve

      public BatchMatrixTriangularSolve(Operation operation)
  • 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 for BatchMatrixTriangularSolve output and operands
      Parameters:
      scope - current scope
      matrix - The matrix value
      rhs - The rhs value
      options - carries optional attribute values
      Returns:
      a new instance of BatchMatrixTriangularSolve
    • lower

      public static BatchMatrixTriangularSolve.Options lower(Boolean lower)
      Sets the lower option.
      Parameters:
      lower - the lower option
      Returns:
      this Options instance.
    • adjoint

      public static BatchMatrixTriangularSolve.Options adjoint(Boolean adjoint)
      Sets the adjoint option.
      Parameters:
      adjoint - the adjoint option
      Returns:
      this Options instance.
    • output

      public Output<T> output()
      Gets output.
      Returns:
      output.
    • asOutput

      public Output<T> asOutput()
      Description copied from interface: Operand
      Returns 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.

      Specified by:
      asOutput in interface Operand<T extends TNumber>
      See Also: