Package

org.platanios.tensorflow.api.ops

control_flow

Permalink

package control_flow

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. control_flow
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait CondBranch extends AnyRef

    Permalink

    Represents a branch of a conditional control flow construct (i.e., true/false branch).

  2. trait CondOutput[T] extends AnyRef

    Permalink

    Type trait used for representing supported conditional construct branch function return types.

  3. abstract class Context extends ProtoSerializable

    Permalink

    Base class for control flow contexts.

    Base class for control flow contexts.

    The usage pattern is a sequence of (Enter, Exit) ops followed by a final ExitResult op.

    We maintain the following state for control flow contexts during graph construction:

    1. GraphConstructionScope has a controlFlowContext field, which represents the current control flow context used to construct new ops. It can be changed by context.enter() and context.exit(). 2. Each op has a controlFlowContext field, which is the control flow context to which the op belongs. It is set at the time the op is created and it is immutable. 3. Each Context has an outerContext field, which is the control flow context in which this context is created. It is set at the time a context is created and it is immutable. 4. Each Context has a contextStack field, which contains the control flow contexts pushed and popped by context.enter() and context.exit().
  4. trait WhileLoopVariable[T] extends AnyRef

    Permalink

    Type trait used for representing supported while-loop construct loop variable types.

  5. abstract class XLAControlFlowContext extends Context

    Permalink

    Base class for XLA and TPU control flow contexts.

Value Members

  1. object CondBranch

    Permalink
  2. object CondOutput

    Permalink
  3. object Context

    Permalink
  4. object FalseBranch extends CondBranch with Product with Serializable

    Permalink
  5. object GradientState

    Permalink
  6. object TrueBranch extends CondBranch with Product with Serializable

    Permalink
  7. object WhileLoopVariable

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped