Class SparseMatrixMatMul.Options

java.lang.Object
org.tensorflow.op.linalg.sparse.SparseMatrixMatMul.Options
Enclosing class:
SparseMatrixMatMul<T extends TType>

public static class SparseMatrixMatMul.Options extends Object
Optional attributes for SparseMatrixMatMul
  • Method Details

    • transposeA

      public SparseMatrixMatMul.Options transposeA(Boolean transposeA)
      Sets the transposeA option.
      Parameters:
      transposeA - Indicates whether a should be transposed.
      Returns:
      this Options instance.
    • transposeB

      public SparseMatrixMatMul.Options transposeB(Boolean transposeB)
      Sets the transposeB option.
      Parameters:
      transposeB - Indicates whether b should be transposed.
      Returns:
      this Options instance.
    • adjointA

      public SparseMatrixMatMul.Options adjointA(Boolean adjointA)
      Sets the adjointA option.
      Parameters:
      adjointA - Indicates whether a should be conjugate-transposed.
      Returns:
      this Options instance.
    • adjointB

      public SparseMatrixMatMul.Options adjointB(Boolean adjointB)
      Sets the adjointB option.
      Parameters:
      adjointB - Indicates whether b should be conjugate-transposed.
      Returns:
      this Options instance.
    • transposeOutput

      public SparseMatrixMatMul.Options transposeOutput(Boolean transposeOutput)
      Sets the transposeOutput option.
      Parameters:
      transposeOutput - Transposes the product of a and b.
      Returns:
      this Options instance.
    • conjugateOutput

      public SparseMatrixMatMul.Options conjugateOutput(Boolean conjugateOutput)
      Sets the conjugateOutput option.
      Parameters:
      conjugateOutput - Conjugates the product of a and b.
      Returns:
      this Options instance.