Uses of Class
at.dms.kjc.sir.lowering.partition.StreamTransform

Packages that use StreamTransform
at.dms.kjc.sir.lowering.partition Provides algorithms for adjusting the granularity of the stream graph to improve load balancing or optimization potential. 
 

Uses of StreamTransform in at.dms.kjc.sir.lowering.partition
 

Subclasses of StreamTransform in at.dms.kjc.sir.lowering.partition
 class FissionTransform
          Represents a fission of a filter in a stream graph.
 class FreqReplaceTransform
          FreqReplace transform on a stream graph.
 class FusionTransform
          Represents a fusion of children in a stream graph.
 class HorizontalCutTransform
          Horizontal cut transform on a stream graph.
 class IdempotentTransform
          Idempotent transform on a stream graph.
 class IdentityTransform
          Identity transform on a stream graph.
 class LinearReplaceTransform
          LinearReplace transform on a stream graph.
 class RemoveSyncTransform
          Removes *matching* synchronization in this pipeline.
 class VerticalCutTransform
          Vertical cut transform on a stream graph.
 

Methods in at.dms.kjc.sir.lowering.partition that return StreamTransform
 StreamTransform StreamTransform.getPred(int i)
          Gets the predecessor child transform from this.
 StreamTransform StreamTransform.getSucc(int i)
          Gets the successor child transform from this.
 StreamTransform StreamTransform.reduce()
          If this is an idempotent transform, then returns an identity transform with no predecessors or sucessors.
 

Methods in at.dms.kjc.sir.lowering.partition with parameters of type StreamTransform
 void StreamTransform.addPred(StreamTransform st)
          Adds a predecessor child transform to this.
 void StreamTransform.addSucc(StreamTransform st)
          Adds a successor child transform to this.