Trait

special.collection

SizesModule

Related Doc: package collection

Permalink

trait SizesModule extends Scalan with SizesDefs

Self Type
Library
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SizesModule
  2. SizesDefs
  3. Sizes
  4. Scalan
  5. DefRewriting
  6. Modules
  7. Entities
  8. Thunks
  9. IfThenElse
  10. Functions
  11. ProgramGraphs
  12. AstGraphs
  13. Transforming
  14. UniversalOps
  15. Equal
  16. OrderingOps
  17. LogicalOps
  18. UnBinOps
  19. NumericOps
  20. Tuples
  21. MethodCalls
  22. GraphVizExport
  23. TypeDescs
  24. Base
  25. AnyRef
  26. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Abs[T](n: ExactNumeric[T])(implicit evidence$8: Scalan.Elem[T]) extends Scalan.UnOp[T, T] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  2. case class Apply[A, B](f: Scalan.Ref[(A) ⇒ B], arg: Scalan.Ref[A], mayInline: Boolean = true) extends Scalan.Node with Scalan.Def[B] with Product with Serializable

    Permalink
    Definition Classes
    Functions
  3. case class ApplyBinOp[A, R](op: Scalan.BinOp[A, R], lhs: Scalan.Ref[A], rhs: Scalan.Ref[A]) extends Scalan.BaseDef[R] with Product with Serializable

    Permalink
    Definition Classes
    UnBinOps
  4. case class ApplyBinOpLazy[A, R](op: Scalan.BinOp[A, R], lhs: Scalan.Ref[A], rhs: Scalan.Ref[Scalan.Thunk[A]]) extends Scalan.BaseDef[R] with Product with Serializable

    Permalink
    Definition Classes
    UnBinOps
  5. case class ApplyUnOp[A, R](op: Scalan.UnOp[A, R], arg: Scalan.Ref[A]) extends Scalan.BaseDef[R] with Product with Serializable

    Permalink
    Definition Classes
    UnBinOps
  6. abstract class AstGraph extends Scalan.Node

    Permalink

    Base class for all compound nodes with schedule (e.g.

    Base class for all compound nodes with schedule (e.g. Lambda, ThunkDef). The graph is directed acyclic (i.e. DAG) in which edges go from boundVars down to roots.

    Definition Classes
    AstGraphs
  7. abstract class BaseDef[+T] extends Scalan.Node with Scalan.Def[T]

    Permalink

    Base class for most predefined operations.

    Base class for most predefined operations.

    Definition Classes
    Base
  8. abstract class BaseElem[A] extends Scalan.Elem[A] with Serializable with Equals

    Permalink
    Definition Classes
    TypeDescs
  9. class BaseElemLiftable[A] extends Scalan.BaseElem[A]

    Permalink

    Type descriptor for primitive types.

    Type descriptor for primitive types. There is implicit val declaration for each primitive type.

    Definition Classes
    TypeDescs
  10. class BinOp[A, R] extends AnyRef

    Permalink
    Definition Classes
    UnBinOps
  11. abstract class CompanionDef[T] extends Scalan.Node with Scalan.Def[T]

    Permalink

    Base class for virtualized instances of type companions.

    Base class for virtualized instances of type companions. Each virtualized entity type (trait or class) may have virtualized companion class.

    Definition Classes
    Base
  12. abstract class CompanionElem[T] extends Scalan.Elem[T]

    Permalink

    Base class for all descriptors of staged companions

    Base class for all descriptors of staged companions

    Definition Classes
    Entities
  13. trait ConcreteElem[TData, TClass] extends Scalan.EntityElem[TClass]

    Permalink

    Base class for all descriptors of staged classes.

    Base class for all descriptors of staged classes.

    Definition Classes
    Entities
  14. trait ConcreteElem1[A, TData, TClass, C[_]] extends Scalan.EntityElem1[A, TClass, C]

    Permalink

    Base class for all descriptors of staged classes with one type parameter.

    Base class for all descriptors of staged classes with one type parameter. Note, it doesn't inherit from ConcreteElem

    Definition Classes
    Entities
  15. case class Const[T](x: T)(implicit eT: Scalan.Elem[T]) extends Scalan.BaseDef[T] with Product with Serializable

    Permalink

    Default node type for embedding of literal values to graph IR.

    Default node type for embedding of literal values to graph IR. This can be used or those types T when Elem[T] is defined, but Liftable[_,T] is not, i.e. for non-liftable types.

    x

    literal value

    eT

    type descriptor of IR type T

    Definition Classes
    Base
  16. abstract class Cont[F[_]] extends Scalan.TypeDesc

    Permalink

    Descriptor of type constructor of * -> * kind.

    Descriptor of type constructor of * -> * kind. Type constructor is not a type, but rather a function from type to type. It contains methods which abstract relationship between types T, F[T] etc.

    Definition Classes
    TypeDescs
    Annotations
    @implicitNotFound( "No Cont available for ${F}." )
  17. case class Convert[From, To](eFrom: Scalan.Elem[From], eTo: Scalan.Elem[To], x: Scalan.Ref[Scalan.Def[_]], conv: Scalan.Ref[(From) ⇒ To]) extends Scalan.BaseDef[To] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  18. type DataEnv = Map[scalan.Library.Sym, AnyRef]

    Permalink

    Immutable data environment used to assign data values to graph nodes.

    Immutable data environment used to assign data values to graph nodes.

    Definition Classes
    TypeDescs
  19. trait Def[+T] extends Scalan.Node

    Permalink

    Base type for all graph nodes (aka computable value definitions).

    Base type for all graph nodes (aka computable value definitions). Each graph node or definition represent one operation node of the data flow graph.

    Definition Classes
    Base
  20. class DefaultPass extends Scalan.Pass

    Permalink

    Default pass to be used when IR is used without special compiler configuration.

    Default pass to be used when IR is used without special compiler configuration.

    Definition Classes
    Transforming
  21. class DivOp[T] extends Scalan.EndoBinOp[T]

    Permalink
    Definition Classes
    NumericOps
  22. case class Downcast[From, To](input: Scalan.Ref[From], eTo: Scalan.Elem[To]) extends Scalan.BaseDef[To] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  23. abstract class Elem[A] extends Scalan.TypeDesc

    Permalink

    Type descriptor of staged types, which correspond to source (unstaged) RTypes defined outside of IR cake.

    Type descriptor of staged types, which correspond to source (unstaged) RTypes defined outside of IR cake.

    A

    the type represented by this descriptor

    Definition Classes
    TypeDescs
    Annotations
    @implicitNotFound( "No Elem available for ${A}." )
  24. class ElemCacheEntry extends AnyRef

    Permalink

    Elements cache information for each Elem class.

    Elements cache information for each Elem class.

    Definition Classes
    TypeDescs
  25. class ElseIfBranch[T] extends AnyRef

    Permalink

    Defines syntax available after IF (cond) THEN thenp ELSEIF (cond1)

    Defines syntax available after IF (cond) THEN thenp ELSEIF (cond1)

    Definition Classes
    IfThenElse
  26. type EndoBinOp[A] = scalan.Library.BinOp[A, A]

    Permalink
    Definition Classes
    UnBinOps
  27. type EndoUnOp[A] = scalan.Library.UnOp[A, A]

    Permalink
    Definition Classes
    UnBinOps
  28. abstract class EntityElem[A] extends Scalan.Elem[A] with Equals

    Permalink

    Base class for all descriptors of staged traits.

    Base class for all descriptors of staged traits. See derived classes in impl packages.

    Definition Classes
    Entities
  29. abstract class EntityElem1[A, To, C[_]] extends Scalan.EntityElem[To]

    Permalink

    Base class for all descriptors of staged traits with one type parameter.

    Base class for all descriptors of staged traits with one type parameter.

    Definition Classes
    Entities
  30. class EntityObject extends AnyRef

    Permalink

    Base class for all objects generated for virtualized types to support staged evaluation machinery.

    Base class for all objects generated for virtualized types to support staged evaluation machinery. Each object contains definitions which can be imported when necessary. All that objects are registered in entityObjects hash map, which is done while IR cake is constructed.

    Definition Classes
    Base
  31. case class EntityObjectOwner(obj: Scalan.EntityObject) extends Scalan.OwnerKind with Product with Serializable

    Permalink
    Definition Classes
    Base
  32. case class EnvRep[A](run: (Scalan.DataEnv) ⇒ (Scalan.DataEnv, Scalan.Ref[A])) extends Product with Serializable

    Permalink

    State monad for symbols computed in a data environment.

    State monad for symbols computed in a data environment. DataEnv is used as the state of the state monad.

    Definition Classes
    TypeDescs
  33. implicit class EqualOps[A] extends AnyRef

    Permalink

    Extension methods to construct ApplyBinOp nodes

    Extension methods to construct ApplyBinOp nodes

    Definition Classes
    Equal
  34. case class Equals[A]()(implicit evidence$1: Scalan.Elem[A]) extends Scalan.BinOp[A, Boolean] with Product with Serializable

    Permalink

    Binary operation representing structural equality between arguments.

    Binary operation representing structural equality between arguments.

    Definition Classes
    Equal
  35. case class First[A, B](pair: Scalan.Ref[(A, B)]) extends Scalan.Node with Scalan.Def[A] with Product with Serializable

    Permalink
    Definition Classes
    Tuples
  36. case class FuncElem[A, B](eDom: Scalan.Elem[A], eRange: Scalan.Elem[B]) extends Scalan.Elem[(A) ⇒ B] with Product with Serializable

    Permalink

    Type descriptor for A => B type where descriptors for A and B are given as arguments.

    Type descriptor for A => B type where descriptors for A and B are given as arguments.

    Definition Classes
    TypeDescs
  37. implicit class FuncExtensions[A, B] extends AnyRef

    Permalink
    Definition Classes
    Functions
  38. trait Functor[F[_]] extends Scalan.Cont[F]

    Permalink
    Definition Classes
    TypeDescs
  39. case class GraphFile(file: File, fileType: String) extends Product with Serializable

    Permalink
    Definition Classes
    GraphVizExport
  40. case class GraphNode(sym: Scalan.Sym, usages: Buffer[Int]) extends Product with Serializable

    Permalink

    GraphNode is created for each symbol of the AstGraph and represents graph linking structure

    GraphNode is created for each symbol of the AstGraph and represents graph linking structure

    Definition Classes
    AstGraphs
  41. case class HashCode[A]() extends Scalan.UnOp[A, Int] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  42. class IfBranch extends AnyRef

    Permalink

    Defines syntax available after IF (cond)

    Defines syntax available after IF (cond)

    Definition Classes
    IfThenElse
  43. case class IfThenElseLazy[T](cond: Scalan.Ref[Boolean], thenp: Scalan.Ref[Scalan.Thunk[T]], elsep: Scalan.Ref[Scalan.Thunk[T]]) extends Scalan.Node with Scalan.Def[T] with Product with Serializable

    Permalink

    IR node to represent IF condition with lazy branches.

    IR node to represent IF condition with lazy branches.

    Definition Classes
    IfThenElse
  44. case class IntegralDivide[T](i: ExactIntegral[T])(implicit elem: Scalan.Elem[T]) extends Scalan.DivOp[T] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  45. case class IntegralMod[T](i: ExactIntegral[T])(implicit elem: Scalan.Elem[T]) extends Scalan.DivOp[T] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  46. implicit class IntegralOpsCls[T] extends AnyRef

    Permalink
    Definition Classes
    NumericOps
  47. case class InvokeFailure(exception: Throwable) extends Scalan.InvokeResult with Product with Serializable

    Permalink

    Exception thrown during MethodCall invocation.

    Exception thrown during MethodCall invocation.

    Definition Classes
    MethodCalls
  48. sealed abstract class InvokeResult extends AnyRef

    Permalink

    Result of MethodCall invocation.

    Result of MethodCall invocation.

    Definition Classes
    MethodCalls
    See also

    tryInvoke

  49. case class InvokeSuccess(result: Scalan.Ref[_]) extends Scalan.InvokeResult with Product with Serializable

    Permalink

    Successful MethodCall invocation with the given result.

    Successful MethodCall invocation with the given result.

    Definition Classes
    MethodCalls
  50. type LElem[A] = Lazy[scalan.Library.Elem[A]]

    Permalink

    Type descriptor which is computed lazily on demand.

    Type descriptor which is computed lazily on demand.

    Definition Classes
    TypeDescs
  51. class Lambda[A, B] extends Scalan.AstGraph with Scalan.Def[(A) ⇒ B]

    Permalink

    Represent lambda expression as IR node.

    Represent lambda expression as IR node.

    Definition Classes
    Functions
  52. type LambdaData[A, B] = (scalan.Library.Lambda[A, B], Nullable[(scalan.Library.Ref[A]) ⇒ scalan.Library.Ref[B]], scalan.Library.Ref[A], scalan.Library.Ref[B])

    Permalink
    Definition Classes
    Functions
  53. implicit class LambdaOps[A, B] extends AnyRef

    Permalink
    Definition Classes
    Functions
  54. class LambdaStack extends AnyRef

    Permalink
    Definition Classes
    Functions
  55. case class LiftableThunk[ST, T](lT: Base.Liftables.Liftable[ST, T]) extends Base.Liftables.Liftable[Scalan.SThunk[ST], Scalan.Thunk[T]] with Product with Serializable

    Permalink
    Definition Classes
    Thunks
  56. implicit class ListOps[A, B] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  57. case class MapTransformer(subst: HashMap[Scalan.Sym, Scalan.Sym]) extends Scalan.Transformer with Product with Serializable

    Permalink

    Concrete and default implementation of Transformer using underlying HashMap.

    Concrete and default implementation of Transformer using underlying HashMap.

    Definition Classes
    Transforming
  58. case class MethodCall extends Scalan.Node with Scalan.Def[Any] with Product with Serializable

    Permalink

    Graph node to represent invocation of the method of some class.

    Graph node to represent invocation of the method of some class.

    Definition Classes
    MethodCalls
  59. sealed abstract class MethodDesc extends AnyRef

    Permalink
    Definition Classes
    TypeDescs
  60. abstract class Mirror extends AnyRef

    Permalink

    Base class for mirrors of graph nodes.

    Base class for mirrors of graph nodes. Provides default implementations which can be overriden if special logic is required.

    Definition Classes
    Transforming
  61. case class NewObject[A](eA: Scalan.Elem[A], args: Seq[Any]) extends Scalan.BaseDef[A] with Product with Serializable

    Permalink

    Represents invocation of constructor of the class described by eA.

    Represents invocation of constructor of the class described by eA.

    eA

    class descriptor for new instance

    args

    arguments of class constructor

    Definition Classes
    MethodCalls
  62. abstract class Node extends Product

    Permalink

    Base class for all IR nodes/operations/definitions.

    Base class for all IR nodes/operations/definitions.

    Definition Classes
    Base
  63. case class NotEquals[A]()(implicit evidence$2: Scalan.Elem[A]) extends Scalan.BinOp[A, Boolean] with Product with Serializable

    Permalink

    Binary operation representing structural inequality between arguments.

    Binary operation representing structural inequality between arguments.

    Definition Classes
    Equal
  64. class NotImplementedStagingException extends Scalan.StagingException

    Permalink
    Definition Classes
    Base
  65. case class NumericMinus[T](n: ExactNumeric[T])(implicit evidence$4: Scalan.Elem[T]) extends Scalan.EndoBinOp[T] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  66. case class NumericNegate[T](n: ExactNumeric[T])(implicit evidence$7: Scalan.Elem[T]) extends Scalan.UnOp[T, T] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  67. implicit class NumericOpsCls[T] extends AnyRef

    Permalink
    Definition Classes
    NumericOps
  68. case class NumericPlus[T](n: ExactNumeric[T])(implicit evidence$3: Scalan.Elem[T]) extends Scalan.EndoBinOp[T] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  69. case class NumericTimes[T](n: ExactNumeric[T])(implicit evidence$5: Scalan.Elem[T]) extends Scalan.EndoBinOp[T] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  70. case class NumericToDouble[T](n: ExactNumeric[T]) extends Scalan.UnOp[T, Double] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  71. case class NumericToFloat[T](n: ExactNumeric[T]) extends Scalan.UnOp[T, Float] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  72. case class NumericToInt[T](n: ExactNumeric[T]) extends Scalan.UnOp[T, Int] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  73. case class NumericToLong[T](n: ExactNumeric[T]) extends Scalan.UnOp[T, Long] with Product with Serializable

    Permalink
    Definition Classes
    NumericOps
  74. case class OpCost(lambdaVar: Scalan.Sym, costedValueId: Int, args: Seq[Scalan.Ref[Int]], opCost: Scalan.Ref[Int]) extends Scalan.BaseDef[Int] with Product with Serializable

    Permalink

    Special graph node to represent accumulation of the operation costs.

    Special graph node to represent accumulation of the operation costs. In general, due to node sharing it is incorrect to just sum up all the args costs and add resCost to that value. Example:
    val x = .. val y = op1(x) val z = op2(x) val res = op3(y, z) The naive summation will lead to the cost of x is accumulated both into cost of y and into cost of z, so in the cost of res it is accumulated twice. To avoid this problem OpCost nodes require special handling in during evaluation.

    lambdaVar

    the variable of the lambda in which scope this node is created. This makes this node belong to the lambda body, even if it doesn't otherwise depend on lambda argument.

    costedValueId

    The id of the node for which this node represents cost

    args

    costs of the arguments, which are here represent dependency information.

    opCost

    operation cost, which should be added to the current scope accumulated cost

    Definition Classes
    UniversalOps
  75. case class OrderingCompare[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Int] with Product with Serializable

    Permalink
    Definition Classes
    OrderingOps
  76. case class OrderingGT[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Boolean] with Product with Serializable

    Permalink
    Definition Classes
    OrderingOps
  77. case class OrderingGTEQ[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Boolean] with Product with Serializable

    Permalink
    Definition Classes
    OrderingOps
  78. case class OrderingLT[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Boolean] with Product with Serializable

    Permalink
    Definition Classes
    OrderingOps
  79. case class OrderingLTEQ[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Boolean] with Product with Serializable

    Permalink
    Definition Classes
    OrderingOps
  80. case class OrderingMax[T](ord: ExactOrdering[T])(implicit evidence$1: Scalan.Elem[T]) extends Scalan.BinOp[T, T] with Product with Serializable

    Permalink
    Definition Classes
    OrderingOps
  81. case class OrderingMin[T](ord: ExactOrdering[T])(implicit evidence$2: Scalan.Elem[T]) extends Scalan.BinOp[T, T] with Product with Serializable

    Permalink
    Definition Classes
    OrderingOps
  82. class OrderingOpsCls[T] extends AnyRef

    Permalink
    Definition Classes
    OrderingOps
  83. sealed abstract class OwnerKind extends AnyRef

    Permalink

    Variants of owner parameter of constructors of nested classes: 1) predefined node classes are owned by IR cake (ScalanOwner) 2) entity classes are owned by enclosing EntityObject

    Variants of owner parameter of constructors of nested classes: 1) predefined node classes are owned by IR cake (ScalanOwner) 2) entity classes are owned by enclosing EntityObject

    Definition Classes
    Base
  84. type PGraph = scalan.Library.ProgramGraph

    Permalink
    Definition Classes
    ProgramGraphs
  85. class PGraphUsages extends DFunc[Int, Buffer[Int]]

    Permalink

    Deboxed function to obtain usages of a given node.

    Deboxed function to obtain usages of a given node. Represents adjacency matrix of the reversed graph g.

    Definition Classes
    ProgramGraphs
  86. case class PairElem[A, B](eFst: Scalan.Elem[A], eSnd: Scalan.Elem[B]) extends Scalan.Elem[(A, B)] with Product with Serializable

    Permalink

    Type descriptor for (A, B) type where descriptors for A and B are given as arguments.

    Type descriptor for (A, B) type where descriptors for A and B are given as arguments.

    Definition Classes
    TypeDescs
  87. implicit class PartialRewriter extends Scalan.Rewriter

    Permalink

    Turns partial function into rewriter (i.e.

    Turns partial function into rewriter (i.e. set of rewriting rules)

    Definition Classes
    Transforming
  88. abstract class Pass extends AnyRef

    Permalink

    Descriptor of a current compiler pass.

    Descriptor of a current compiler pass. Compiler can be configured to perform one pass after another. Each pass has name, configuration parameters, finalizaton logic etc.

    Definition Classes
    Transforming
  89. case class PassConfig(shouldUnpackTuples: Boolean = false, shouldExtractFields: Boolean = true, constantPropagation: Boolean = true, shouldSlice: Boolean = false) extends Product with Serializable

    Permalink

    Configuration parameters of the Pass descriptor.

    Configuration parameters of the Pass descriptor.

    Definition Classes
    Transforming
  90. case class Placeholder[T](eT: Scalan.LElem[T]) extends Scalan.Node with Scalan.Def[T] with Product with Serializable

    Permalink

    Symbols may temporary refer to this node until their target node is updated.

    Symbols may temporary refer to this node until their target node is updated.

    Definition Classes
    Base
  91. case class ProgramGraph(roots: Seq[Scalan.Sym], mapping: Nullable[Scalan.Transformer], filterNode: Nullable[(Scalan.Sym) ⇒ Boolean]) extends Scalan.AstGraph with Product with Serializable

    Permalink

    Immutable graph collected from roots following Ref.node.deps links.

    Immutable graph collected from roots following Ref.node.deps links.

    Definition Classes
    ProgramGraphs
  92. type RFunc[-A, +B] = scalan.Library.Ref[(A) ⇒ B]

    Permalink
    Definition Classes
    Base
  93. case class RMethodDesc(method: Method) extends Scalan.MethodDesc with Product with Serializable

    Permalink
    Definition Classes
    TypeDescs
  94. type RPair[+A, +B] = scalan.Library.Ref[(A, B)]

    Permalink
    Definition Classes
    Base
  95. abstract class Ref[+T] extends AnyRef

    Permalink

    Abstract representation of a computable value.

    Abstract representation of a computable value. Default implementation is a simple lightweight reference to the corresponding definition. Every Ref have direct access to its Def via node property. Every Ref is typed, and the type is avaliable via elem property.

    Definition Classes
    Base
    See also

    SingleRep

  96. implicit class RepBooleanOps extends AnyRef

    Permalink
    Definition Classes
    LogicalOps
  97. implicit class RepThunkOps[T] extends AnyRef

    Permalink
    Definition Classes
    Thunks
  98. implicit class RepUniversalOps[A] extends AnyRef

    Permalink
    Definition Classes
    UniversalOps
  99. abstract class Rewriter extends AnyRef

    Permalink
    Definition Classes
    Transforming
  100. type SThunk[T] = () ⇒ T

    Permalink
    Definition Classes
    Thunks
  101. type Schedule = Seq[scalan.Library.Sym]

    Permalink

    Type synonim for graph schedules.

    Type synonim for graph schedules.

    Definition Classes
    AstGraphs
  102. type ScheduleIds = Buffer[Int]

    Permalink

    Alternative representation of schedules using node ids.

    Alternative representation of schedules using node ids.

    Definition Classes
    AstGraphs
  103. case class Second[A, B](pair: Scalan.Ref[(A, B)]) extends Scalan.Node with Scalan.Def[B] with Product with Serializable

    Permalink
    Definition Classes
    Tuples
  104. implicit class SeqExpExtensionsForEmitGraph extends AnyRef

    Permalink
    Definition Classes
    GraphVizExport
  105. final class SingleRef[+T] extends Scalan.Ref[T]

    Permalink

    A Ref is a symbolic reference used internally to refer to graph nodes.

    A Ref is a symbolic reference used internally to refer to graph nodes. Light weight stateless immutable reference to a graph node (Def[T]). Two symbols are equal if they refer to the nodes with the same id, which is due to Def unification means equal symbols refer to the same instance of Def.

    Definition Classes
    Base
  106. trait Size[Val] extends scalan.Library.Node with scalan.Library.Def[scalan.Library.Size[Val]]

    Permalink
    Definition Classes
    Sizes
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  107. trait SizeColl[Item] extends scalan.Library.Node with scalan.Library.Size[scalan.Library.Coll[Item]]

    Permalink
    Definition Classes
    Sizes
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  108. trait SizeCollCompanion extends AnyRef

    Permalink
    Definition Classes
    Sizes
  109. trait SizeCompanion extends AnyRef

    Permalink
    Definition Classes
    Sizes
  110. trait SizeFunc[Env, Arg, Res] extends scalan.Library.Node with scalan.Library.Size[(Arg) ⇒ Res]

    Permalink
    Definition Classes
    Sizes
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  111. trait SizeFuncCompanion extends AnyRef

    Permalink
    Definition Classes
    Sizes
  112. case class SizeOf[T](value: Scalan.Ref[T]) extends Scalan.BaseDef[Long] with Product with Serializable

    Permalink

    Represents calculation of size in bytes of the given value.

    Represents calculation of size in bytes of the given value. The descriptor value.elem can be used to decompose value into components.

    Definition Classes
    UniversalOps
  113. trait SizeOption[T] extends scalan.Library.Node with scalan.Library.Size[scalan.Library.WOption[T]]

    Permalink
    Definition Classes
    Sizes
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  114. trait SizeOptionCompanion extends AnyRef

    Permalink
    Definition Classes
    Sizes
  115. trait SizePair[L, R] extends scalan.Library.Node with scalan.Library.Size[(L, R)]

    Permalink
    Definition Classes
    Sizes
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  116. trait SizePairCompanion extends AnyRef

    Permalink
    Definition Classes
    Sizes
  117. trait SizePrim[Val] extends scalan.Library.Node with scalan.Library.Size[Val]

    Permalink
    Definition Classes
    Sizes
    Annotations
    @Liftable()
  118. trait SizePrimCompanion extends AnyRef

    Permalink
    Definition Classes
    Sizes
  119. class StagingException extends RuntimeException

    Permalink
    Definition Classes
    Base
  120. type Subst = HashMap[scalan.Library.Sym, scalan.Library.Sym]

    Permalink
    Definition Classes
    Functions
  121. case class SumElem[A, B](eLeft: Scalan.Elem[A], eRight: Scalan.Elem[B]) extends Scalan.Elem[Scalan.|[A, B]] with Product with Serializable

    Permalink

    Type descriptor for A | B type where descriptors for A and B are given as arguments.

    Type descriptor for A | B type where descriptors for A and B are given as arguments.

    Definition Classes
    TypeDescs
  122. type Sym = scalan.Library.Ref[_]

    Permalink

    Untyped shortcut sinonim of Ref, which is used as untyped reference to graph nodes (definitions).

    Untyped shortcut sinonim of Ref, which is used as untyped reference to graph nodes (definitions). Following a tradition in compiler engineering we call references to definitions as symbols.

    Definition Classes
    Base
  123. type Th[+T] = scalan.Library.Ref[scalan.Library.Thunk[T]]

    Permalink
    Definition Classes
    Thunks
  124. class ThenIfBranch[T] extends AnyRef

    Permalink

    Defines syntax available after IF (cond) THEN thenp

    Defines syntax available after IF (cond) THEN thenp

    Definition Classes
    IfThenElse
  125. trait Thunk[+A] extends AnyRef

    Permalink
    Definition Classes
    Thunks
  126. class ThunkCompanion extends AnyRef

    Permalink
    Definition Classes
    Thunks
  127. case class ThunkConst[ST, T](constValue: Scalan.SThunk[ST], lT: Base.Liftables.Liftable[ST, T]) extends Scalan.BaseDef[Scalan.Thunk[T]] with LiftedConst[Scalan.SThunk[ST], Scalan.Thunk[T]] with Product with Serializable

    Permalink
    Definition Classes
    Thunks
  128. class ThunkDef[A] extends Scalan.AstGraph with Scalan.Def[Scalan.Thunk[A]]

    Permalink
    Definition Classes
    Thunks
  129. case class ThunkElem[A](eItem: Scalan.Elem[A]) extends Scalan.EntityElem1[A, Scalan.Thunk[A], Scalan.Thunk] with Product with Serializable

    Permalink
    Definition Classes
    Thunks
  130. case class ThunkForce[A](thunk: Scalan.Ref[Scalan.Thunk[A]]) extends Scalan.Node with Scalan.Def[A] with Product with Serializable

    Permalink
    Definition Classes
    Thunks
  131. class ThunkScope extends AnyRef

    Permalink
    Definition Classes
    Thunks
  132. class ThunkStack extends AnyRef

    Permalink
    Definition Classes
    Thunks
  133. case class ToString[A]() extends Scalan.UnOp[A, String] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  134. abstract class Transformer extends AnyRef

    Permalink

    Base class for Ref to Ref transformations.

    Base class for Ref to Ref transformations. Each transformer keeps a mapping data between references to original nodes and references to the corresponding transformed nodes.

    Definition Classes
    Base
  135. case class Tup[A, B](a: Scalan.Ref[A], b: Scalan.Ref[B]) extends Scalan.Node with Scalan.Def[(A, B)] with Product with Serializable

    Permalink
    Definition Classes
    Tuples
  136. implicit class TupleOps2[A, B] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  137. implicit class TupleOps3[A, B, C] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  138. implicit class TupleOps4[A, B, C, D] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  139. implicit class TupleOps5[A, B, C, D, E] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  140. abstract class TypeDesc extends Serializable

    Permalink
    Definition Classes
    TypeDescs
  141. class UnOp[A, R] extends AnyRef

    Permalink
    Definition Classes
    UnBinOps
  142. case class Upcast[From, To](input: Scalan.Ref[From], eTo: Scalan.Elem[To]) extends Scalan.BaseDef[To] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  143. case class Variable[T](varId: Int)(implicit eT: Scalan.LElem[T]) extends Scalan.Node with Scalan.Def[T] with Product with Serializable

    Permalink

    Node class for typed variables.

    Node class for typed variables. In particular for lambda-bound variables.

    varId

    is independent from nodeId, shouldn't be used as node id.

    eT

    type descriptor of the variable type

    Definition Classes
    Base
  144. case class WMethodDesc(wrapSpec: WrapSpec, method: Method) extends Scalan.MethodDesc with Product with Serializable

    Permalink
    Definition Classes
    TypeDescs
  145. type |[+A, +B] = Either[A, B]

    Permalink
    Definition Classes
    Base

Value Members

  1. def !!!(msg: String, e: Throwable, syms: scalan.Library.Ref[_]*): Nothing

    Permalink
    Definition Classes
    Base
  2. def !!!(msg: String, syms: scalan.Library.Ref[_]*): Nothing

    Permalink
    Definition Classes
    Base
  3. def !!!: Nothing

    Permalink

    Helper methods to throw errors

    Helper methods to throw errors

    Definition Classes
    Base
  4. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  6. object &&

    Permalink

    Logical AND between two pattern matches of the save value x.

    Logical AND between two pattern matches of the save value x. Can be used to construct patterns like case P1 && P2 => ...

    Definition Classes
    Base
  7. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def ???(value: Any, syms: scalan.Library.Ref[_]*): Nothing

    Permalink
    Definition Classes
    Base
  9. def ???: Nothing

    Permalink
    Definition Classes
    Base
  10. val And: scalan.Library.BinOp[Boolean, Boolean]

    Permalink
    Definition Classes
    LogicalOps
  11. val AnyElement: scalan.Library.Elem[Any]

    Permalink

    Type descriptor for Any, cannot be used implicitly.

    Type descriptor for Any, cannot be used implicitly.

    Definition Classes
    TypeDescs
  12. val AnyRefElement: scalan.Library.Elem[AnyRef]

    Permalink

    Type descriptor for AnyRef, cannot be used implicitly.

    Type descriptor for AnyRef, cannot be used implicitly.

    Definition Classes
    TypeDescs
  13. val BinaryXorOp: scalan.Library.BinOp[Boolean, Boolean]

    Permalink
    Definition Classes
    LogicalOps
  14. implicit val BooleanElement: scalan.Library.Elem[Boolean]

    Permalink
    Definition Classes
    TypeDescs
  15. val BooleanToInt: scalan.Library.UnOp[Boolean, Int]

    Permalink
    Definition Classes
    LogicalOps
  16. implicit val ByteElement: scalan.Library.Elem[Byte]

    Permalink
    Definition Classes
    TypeDescs
  17. implicit val CharElement: scalan.Library.Elem[Char]

    Permalink
    Definition Classes
    TypeDescs
  18. object ConstantLambda

    Permalink

    Matcher for lambdas which don't depend on their arguments (but can close over other expressions, unlike VeryConstantLambda).

    Matcher for lambdas which don't depend on their arguments (but can close over other expressions, unlike VeryConstantLambda).

    Definition Classes
    Functions
  19. object ConstantThunk

    Permalink
    Definition Classes
    Thunks
  20. object Def

    Permalink
    Definition Classes
    Base
  21. val DefaultMirror: scalan.Library.Mirror

    Permalink

    Default Mirror instance which is used in core IR methods.

    Default Mirror instance which is used in core IR methods.

    Definition Classes
    Transforming
  22. implicit val DoubleElement: scalan.Library.Elem[Double]

    Permalink
    Definition Classes
    TypeDescs
  23. object Elem extends Serializable

    Permalink
    Definition Classes
    TypeDescs
  24. val EmptyTypeArgs: ListMap[String, (scalan.Library.TypeDesc, Variance)]

    Permalink

    Since ListMap is immutable this empty map can be shared by all other maps created from it.

    Since ListMap is immutable this empty map can be shared by all other maps created from it.

    Definition Classes
    TypeDescs
  25. object EnvRep extends Serializable

    Permalink
    Definition Classes
    TypeDescs
  26. object ExpWithElem

    Permalink
    Definition Classes
    Base
  27. implicit val FloatElement: scalan.Library.Elem[Float]

    Permalink
    Definition Classes
    TypeDescs
  28. implicit final def FuncElemExtensions[A, B](eAB: scalan.Library.Elem[(A) ⇒ B]): scalan.Library.FuncElem[A, B]

    Permalink
    Definition Classes
    TypeDescs
  29. def IF(cond: scalan.Library.Ref[Boolean]): scalan.Library.IfBranch

    Permalink

    If c then t else e construction with standard lazy evaluation of branches.

    If c then t else e construction with standard lazy evaluation of branches. The representation uses Thunk for each branch

    Definition Classes
    IfThenElse
  30. object IdentityLambda

    Permalink
    Definition Classes
    Functions
  31. implicit val IntElement: scalan.Library.Elem[Int]

    Permalink
    Definition Classes
    TypeDescs
  32. final def IntZero: scalan.Library.Ref[Int]

    Permalink

    Zero literal node, which is lazily created and can be efficiently reused.

    Zero literal node, which is lazily created and can be efficiently reused. Much faster alternative to (0: Rep[Int]) or toRep(0).

    Definition Classes
    Base
    Annotations
    @inline()
  33. object InvokeImpossible extends Scalan.InvokeResult with Product with Serializable

    Permalink

    Invocation is not possible, e.g.

    Invocation is not possible, e.g. when receiver doesn't implemented the method.

    Definition Classes
    MethodCalls
  34. object IsPair

    Permalink
    Definition Classes
    Tuples
  35. object Lambda

    Permalink
    Definition Classes
    Functions
  36. val LazyAnyElement: Lazy[scalan.Library.Elem[Any]]

    Permalink

    Predefined Lazy value saved here to be used in hotspot code.

    Predefined Lazy value saved here to be used in hotspot code.

    Definition Classes
    TypeDescs
  37. object Liftables

    Permalink

    Data type ST is liftable is there is Liftable[ST, T] instance for some type T.

    Data type ST is liftable is there is Liftable[ST, T] instance for some type T. Liftable typeclass allows to define which types can have values embedded as literals into graph IR.

    Definition Classes
    Base
  38. implicit val LongElement: scalan.Library.Elem[Long]

    Permalink
    Definition Classes
    TypeDescs
  39. object MapTransformer extends Serializable

    Permalink
    Definition Classes
    Transforming
  40. object NoOwner extends Scalan.OwnerKind with Product with Serializable

    Permalink
    Definition Classes
    Base
  41. val NoRewriting: scalan.Library.Rewriter

    Permalink

    Identity rewriter, i.e.

    Identity rewriter, i.e. doesn't change the graph when applied.

    Definition Classes
    Transforming
  42. val Not: scalan.Library.UnOp[Boolean, Boolean]

    Permalink
    Definition Classes
    LogicalOps
  43. val NothingElement: scalan.Library.Elem[Nothing]

    Permalink
    Definition Classes
    TypeDescs
  44. val Or: scalan.Library.BinOp[Boolean, Boolean]

    Permalink
    Definition Classes
    LogicalOps
  45. implicit def OrderingToOrderingOps[T](x: T)(implicit n: ExactOrdering[T], et: scalan.Library.Elem[T]): scalan.Library.OrderingOpsCls[T]

    Permalink
    Definition Classes
    OrderingOps
  46. object Pair

    Permalink
    Definition Classes
    Tuples
  47. implicit final def PairElemExtensions[A, B](eAB: scalan.Library.Elem[(A, B)]): scalan.Library.PairElem[A, B]

    Permalink
    Definition Classes
    TypeDescs
  48. object Pass

    Permalink
    Definition Classes
    Transforming
  49. object ProgramGraph extends Serializable

    Permalink
    Definition Classes
    ProgramGraphs
  50. object ScalanOwner extends Scalan.OwnerKind with Product with Serializable

    Permalink
    Definition Classes
    Base
  51. implicit val ShortElement: scalan.Library.Elem[Short]

    Permalink
    Definition Classes
    TypeDescs
  52. object Size extends scalan.Library.EntityObject

    Permalink
    Definition Classes
    SizesDefs
  53. object SizeColl extends scalan.Library.EntityObject

    Permalink
    Definition Classes
    SizesDefs
  54. object SizeFunc extends scalan.Library.EntityObject

    Permalink
    Definition Classes
    SizesDefs
  55. object SizeOption extends scalan.Library.EntityObject

    Permalink
    Definition Classes
    SizesDefs
  56. object SizePair extends scalan.Library.EntityObject

    Permalink
    Definition Classes
    SizesDefs
  57. object SizePrim extends scalan.Library.EntityObject

    Permalink
    Definition Classes
    SizesDefs
  58. implicit val StringElement: scalan.Library.Elem[String]

    Permalink
    Definition Classes
    TypeDescs
  59. implicit final def SumElemExtensions[A, B](eAB: scalan.Library.Elem[scalan.Library.|[A, B]]): scalan.Library.SumElem[A, B]

    Permalink
    Definition Classes
    TypeDescs
  60. val Thunk: scalan.Library.ThunkCompanion

    Permalink
    Definition Classes
    Thunks
  61. object ThunkDef

    Permalink
    Definition Classes
    Thunks
  62. final def TypeArgs(descs: (String, (scalan.Library.TypeDesc, Variance))*): ListMap[String, (scalan.Library.TypeDesc, Variance)]

    Permalink
    Definition Classes
    TypeDescs
  63. implicit val UnitElement: scalan.Library.Elem[Unit]

    Permalink
    Definition Classes
    TypeDescs
  64. object VeryConstantLambda

    Permalink

    Matcher for lambdas which return staging-time constants.

    Matcher for lambdas which return staging-time constants. VeryConstantLambda(x) should be equivalent to ConstantLambda(Def(Const(x)))

    Definition Classes
    Functions
  65. var _currentPass: scalan.Library.Pass

    Permalink
    Definition Classes
    Transforming
  66. def alphaEqual(s1: scalan.Library.Sym, s2: scalan.Library.Sym): Boolean

    Permalink
    Definition Classes
    Functions
  67. def applyBinOp[A, R](op: scalan.Library.BinOp[A, R], lhs: scalan.Library.Ref[A], rhs: scalan.Library.Ref[A]): scalan.Library.Ref[R]

    Permalink
    Definition Classes
    UnBinOps
  68. def applyBinOpLazy[A, R](op: scalan.Library.BinOp[A, R], lhs: scalan.Library.Ref[A], rhs: scalan.Library.Ref[scalan.Library.Thunk[A]]): scalan.Library.Ref[R]

    Permalink
    Definition Classes
    UnBinOps
  69. def applyUnOp[A, R](op: scalan.Library.UnOp[A, R], arg: scalan.Library.Ref[A]): scalan.Library.Ref[R]

    Permalink
    Definition Classes
    UnBinOps
  70. final def asElem[T](d: scalan.Library.TypeDesc): scalan.Library.Elem[T]

    Permalink

    Helper type case method.

    Helper type case method.

    Definition Classes
    TypeDescs
    Annotations
    @inline()
  71. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  72. final def asRep[T](x: scalan.Library.Ref[_]): scalan.Library.Ref[T]

    Permalink

    Helper to type cast node references.

    Helper to type cast node references.

    Definition Classes
    Base
    Annotations
    @inline()
  73. def assertElem(value: scalan.Library.Ref[_], elem: scalan.Library.Elem[_], hint: ⇒ String): Unit

    Permalink
    Definition Classes
    TypeDescs
  74. def assertElem(value: scalan.Library.Ref[_], elem: scalan.Library.Elem[_]): Unit

    Permalink
    Definition Classes
    TypeDescs
  75. def assertEqualElems[A](e1: scalan.Library.Elem[A], e2: scalan.Library.Elem[A], m: ⇒ String): Unit

    Permalink
    Definition Classes
    TypeDescs
  76. def assertValueIdForOpCost[A, B](value: scalan.Library.Ref[A], cost: scalan.Library.Ref[B]): Unit

    Permalink
    Definition Classes
    UniversalOps
  77. def beginPass(pass: scalan.Library.Pass): Unit

    Permalink

    Called to setup IR before the new pass is executed.

    Called to setup IR before the new pass is executed.

    Definition Classes
    Transforming
  78. val cacheElems: Boolean

    Permalink

    Whether IR type descriptors should be cached.

    Whether IR type descriptors should be cached.

    Definition Classes
    Base
  79. val cachePairs: Boolean

    Permalink

    Whether Tup instances should be cached.

    Whether Tup instances should be cached.

    Definition Classes
    Base
  80. final def cachedElemByClass[E <: scalan.Library.Elem[_]](args: AnyRef*)(implicit clazz: Class[E]): E

    Permalink

    Retrieve an instance of the given Elem class by either looking up in the cache or creating a new one.

    Retrieve an instance of the given Elem class by either looking up in the cache or creating a new one. We assume that all Elem instances are uniquely defined by (clazz, args)

    args

    arguments of Elem class constructor

    clazz

    Elem class

    Definition Classes
    TypeDescs
  81. def canBeInvoked(d: scalan.Library.Def[_], m: Method, args: Array[AnyRef]): Boolean

    Permalink

    Method invocation checker.

    Method invocation checker.

    Attributes
    protected
    Definition Classes
    MethodCalls
  82. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  83. def clusterColor(g: scalan.Library.AstGraph): Option[String]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  84. def clusterSchedule(g: scalan.Library.AstGraph): Seq[scalan.Library.Sym]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  85. def compose[A, B, C](f: scalan.Library.Ref[(B) ⇒ C], g: scalan.Library.Ref[(A) ⇒ B]): scalan.Library.Ref[(A) ⇒ C]

    Permalink

    Composition of two functions (in mathematical notation), where first g is applied and them f.

    Composition of two functions (in mathematical notation), where first g is applied and them f.

    Definition Classes
    Functions
  86. def constFun[A, B](x: scalan.Library.Ref[B])(implicit e: scalan.Library.Elem[A]): scalan.Library.Ref[(A) ⇒ B]

    Permalink
    Definition Classes
    Functions
  87. final def container[F[_]](implicit arg0: scalan.Library.Cont[F]): scalan.Library.Cont[F]

    Permalink
    Definition Classes
    TypeDescs
  88. implicit final def containerElem[F[_], A](implicit arg0: scalan.Library.Cont[F], arg1: scalan.Library.Elem[A]): scalan.Library.Elem[F[A]]

    Permalink
    Definition Classes
    TypeDescs
  89. def createDefinition[T](optScope: Nullable[scalan.Library.ThunkScope], s: scalan.Library.Ref[T], d: scalan.Library.Def[T]): scalan.Library.Ref[T]

    Permalink

    Create new definition entry in either given Thunk or in the global hash table.

    Create new definition entry in either given Thunk or in the global hash table.

    optScope

    optional thunk scope to put given definition

    s

    symbol refering to d

    d

    definition node to add to the scope of globally

    returns

    reference to d (which is s)

    Attributes
    protected
    Definition Classes
    Base
  90. def currentPass: scalan.Library.Pass

    Permalink

    IR global current Pass, changes when the compier switches from one pass to the next one.

    IR global current Pass, changes when the compier switches from one pass to the next one. Should remain constant during the whole pass execution.

    Definition Classes
    Transforming
  91. val debugModeSanityChecks: Boolean

    Permalink

    Whether to perform extended checks of correctness, expected invariants and data consistency.

    Whether to perform extended checks of correctness, expected invariants and data consistency. NOTE: Since it may add substantial overhead, set it to false before using in production.

    Definition Classes
    Base
  92. def defCount: Int

    Permalink

    Returns a number of definitions added to this IR context.

    Returns a number of definitions added to this IR context.

    Definition Classes
    Base
  93. def def_unapply[T](e: scalan.Library.Ref[T]): Nullable[scalan.Library.Def[T]]

    Permalink
    Definition Classes
    Base
  94. def defaultGraphVizConfig: GraphVizConfig

    Permalink
    Definition Classes
    GraphVizExport
  95. def delayInvoke: Nothing

    Permalink
    Definition Classes
    MethodCalls
  96. def downcast[To](value: scalan.Library.Ref[_])(implicit arg0: scalan.Library.Elem[To]): scalan.Library.Ref[To]

    Permalink
    Definition Classes
    UniversalOps
  97. val elemCache: AVHashMap[Class[_], scalan.Library.ElemCacheEntry]

    Permalink
    Attributes
    protected
    Definition Classes
    TypeDescs
  98. final def element[A](implicit ea: scalan.Library.Elem[A]): scalan.Library.Elem[A]

    Permalink
    Definition Classes
    TypeDescs
  99. def emitDepGraph(exceptionOrGraph: Either[Throwable, scalan.Library.AstGraph], directory: File, fileName: String)(implicit config: GraphVizConfig): Option[scalan.Library.GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  100. def emitDepGraph(graph: scalan.Library.AstGraph, directory: File, fileName: String)(implicit config: GraphVizConfig): Option[scalan.Library.GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  101. def emitDepGraph(ss: Seq[scalan.Library.Sym], directory: File, fileName: String)(implicit config: GraphVizConfig): Option[scalan.Library.GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  102. def emitDepGraph(start: scalan.Library.Sym, directory: File, fileName: String)(implicit config: GraphVizConfig): Option[scalan.Library.GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  103. def emitDepGraph(d: scalan.Library.Def[_], directory: File, fileName: String)(implicit config: GraphVizConfig): Option[scalan.Library.GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  104. def emitDot(dotText: String, directory: File, fileName: String)(implicit config: GraphVizConfig): Option[scalan.Library.GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  105. def emitExceptionGraph(e: Throwable, directory: File, fileName: String)(implicit config: GraphVizConfig): Option[scalan.Library.GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  106. def emptyMatchSubst: scalan.Library.Subst

    Permalink
    Definition Classes
    Functions
    Annotations
    @inline()
  107. def endPass(pass: scalan.Library.Pass): Unit

    Permalink

    Called to let this IR context to finalized the given pass.

    Called to let this IR context to finalized the given pass.

    Definition Classes
    Transforming
  108. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  109. def equalValues[A](x: Any, y: Any)(implicit eA: scalan.Library.Elem[A]): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    Equal
  110. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  111. implicit def extendThunkElement[T](elem: scalan.Library.Elem[scalan.Library.Thunk[T]]): scalan.Library.ThunkElem[T]

    Permalink
    Definition Classes
    Thunks
  112. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  113. def findGlobalDefinition[T](d: scalan.Library.Def[T]): scalan.Library.Ref[T]

    Permalink

    Lookup definition in this IR context's hash table of definitions.

    Lookup definition in this IR context's hash table of definitions.

    returns

    node reference to an instance stored in hash table, which is equal to d and null if there is no definition which is equal to d

    Definition Classes
    Base
  114. def findOrCreateDefinition[T](d: scalan.Library.Def[T], newSym: ⇒ scalan.Library.Ref[T]): scalan.Library.Ref[T]

    Permalink

    Lookup d in the heap of nodes.

    Lookup d in the heap of nodes. If the lookup is successfull, then its reference is returned. If the node is not found in the heap, then it is added and d.self reference is returned.

    d

    node to be added to the head of nodes

    newSym

    producer of the reference to be used as the reference to d node.

    returns

    return a reference to d node in the heap

    Definition Classes
    Base
  115. def forceThunkByMirror[A](thunk: scalan.Library.Th[A], subst: scalan.Library.MapTransformer = MapTransformer.empty()): scalan.Library.Ref[A]

    Permalink
    Definition Classes
    Thunks
  116. def forceThunkDefByMirror[A](th: scalan.Library.ThunkDef[A], subst: scalan.Library.MapTransformer = MapTransformer.empty()): scalan.Library.Ref[A]

    Permalink
    Definition Classes
    Thunks
  117. def formatConst(x: Any): String

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  118. def formatDef(d: scalan.Library.Def[_])(implicit config: GraphVizConfig): String

    Permalink
    Attributes
    protected
    Definition Classes
    ThunksGraphVizExport
  119. def formatMetadata(s: scalan.Library.Sym): List[String]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  120. final def freshId: Int

    Permalink

    Get next fresh node id

    Get next fresh node id

    Definition Classes
    Base
    Annotations
    @inline()
  121. final def freshSym[T](d: scalan.Library.Def[T]): scalan.Library.Ref[T]

    Permalink

    Lookup of create reference to the given definition.

    Lookup of create reference to the given definition. To lookup d.nodeId is used as the index in the _symbolTable. If Ref is not found in _symbolTable, then new Ref instance is created and stored in _symbolTable at d.nodeId index.

    Definition Classes
    Base
    Annotations
    @inline()
  122. implicit final def fun[A, B](f: (scalan.Library.Ref[A]) ⇒ scalan.Library.Ref[B])(implicit eA: scalan.Library.LElem[A]): scalan.Library.Ref[(A) ⇒ B]

    Permalink

    Executes given lambda to construct Lambda node.

    Executes given lambda to construct Lambda node. The function f can be called with any symbol and has an effect of growing a graph starting from the argument symbol. If a reference to Variable node is passed as argument, then the constructed graph nodes can be collected to Lambda node forming its body and schedule.

    f

    function which execution will create body nodes

    eA

    arguments type descriptor

    Definition Classes
    Functions
  123. implicit final def fun2[A, B, C](f: (scalan.Library.Ref[A], scalan.Library.Ref[B]) ⇒ scalan.Library.Ref[C])(implicit eA: scalan.Library.LElem[A], eB: scalan.Library.LElem[B]): scalan.Library.Ref[((A, B)) ⇒ C]

    Permalink
    Definition Classes
    Functions
  124. implicit final def funcElement[A, B](implicit ea: scalan.Library.Elem[A], eb: scalan.Library.Elem[B]): scalan.Library.Elem[(A) ⇒ B]

    Permalink
    Definition Classes
    TypeDescs
  125. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  126. def getEntityObject(name: String): Nullable[scalan.Library.EntityObject]

    Permalink
    Definition Classes
    Base
    Annotations
    @inline()
  127. def getOwnerKind(constructor: Constructor[_]): scalan.Library.OwnerKind

    Permalink

    Returns OwnerKind for the given constructor, using its first parameter.

    Returns OwnerKind for the given constructor, using its first parameter.

    Attributes
    protected
    Definition Classes
    Base
  128. final def getSourceValues(dataEnv: scalan.Library.DataEnv, forWrapper: Boolean, stagedValues: AnyRef*): Seq[AnyRef]

    Permalink
    Definition Classes
    TypeDescs
  129. final def getSym(id: Int): scalan.Library.Sym

    Permalink

    Lookup node reference by its id.

    Lookup node reference by its id. This is simple array access by index O(1) operation.

    Definition Classes
    Base
    Annotations
    @inline()
  130. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  131. def identityFun[A](implicit e: scalan.Library.Elem[A]): scalan.Library.Ref[(A) ⇒ A]

    Permalink
    Definition Classes
    Functions
  132. def ifThenElseLazy[T](cond: scalan.Library.Ref[Boolean], thenp: ⇒ scalan.Library.Ref[T], elsep: ⇒ scalan.Library.Ref[T]): scalan.Library.Ref[T]

    Permalink

    Constructs IfThenElse node wrapping by-name args into ThunkDef nodes.

    Constructs IfThenElse node wrapping by-name args into ThunkDef nodes.

    Definition Classes
    IfThenElse
  133. def integral[T](implicit arg0: ExactIntegral[T]): ExactIntegral[T]

    Permalink
    Definition Classes
    NumericOps
  134. def invokeUnlifted(e: scalan.Library.Elem[_], mc: scalan.Library.MethodCall, dataEnv: scalan.Library.DataEnv): AnyRef

    Permalink

    Invoke source type method corresponding to the given MethodCall node.

    Invoke source type method corresponding to the given MethodCall node. This method delegated the work to the given element instance.

    e

    type descriptor of receiver node

    mc

    IR node representing method invocation

    dataEnv

    environment where each symbol of 'mc' has associated data value

    returns

    data value returned from invoked method

    Definition Classes
    TypeDescs
  135. var isInlineThunksOnForce: Boolean

    Permalink
    Definition Classes
    Thunks
  136. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  137. def isInvokeEnabled(d: scalan.Library.Def[_], m: Method): Boolean

    Permalink

    Method invocation enabler.

    Method invocation enabler.

    returns

    true if the given method can be invoked on the given node.

    Definition Classes
    MethodCalls
  138. final def isOne[T](x: T, n: ExactNumeric[T]): Boolean

    Permalink
    Definition Classes
    NumericOps
    Annotations
    @inline()
  139. final def isZero[T](x: T, n: ExactNumeric[T]): Boolean

    Permalink
    Definition Classes
    NumericOps
    Annotations
    @inline()
  140. var keepOriginalFunc: Boolean

    Permalink

    Global flag governing lambda reification in fun and mkLambda.

    Global flag governing lambda reification in fun and mkLambda. If this flag is true then original f: Ref[A] => Ref[B] function is stored in Lambda node. As a consequence if f is not stored, then unfoldLambda is done by mirrorLambda.

    Definition Classes
    Functions
  141. var lambdaStack: List[scalan.Library.Lambda[_, _]]

    Permalink
    Definition Classes
    Functions
  142. implicit def liftToRep[A](x: A)(implicit arg0: scalan.Library.Elem[A]): scalan.Library.Ref[A]

    Permalink
    Definition Classes
    Base
    Annotations
    @inline()
  143. implicit def liftableThunk[ST, T](implicit lT: Liftable[ST, T]): Liftable[scalan.Library.SThunk[ST], scalan.Library.Thunk[T]]

    Permalink
    Definition Classes
    Thunks
  144. def logWarn(msg: ⇒ String): Unit

    Permalink

    Log warning message to the log.

    Log warning message to the log. This is default and simple implementation, which can be overriden.

    Definition Classes
    Base
  145. def matchAny(a1: Any, a2: Any, allowInexactMatch: Boolean, subst: scalan.Library.Subst): Nullable[scalan.Library.Subst]

    Permalink
    Attributes
    protected
    Definition Classes
    Functions
  146. def matchDefs(d1: scalan.Library.Def[_], d2: scalan.Library.Def[_], allowInexactMatch: Boolean, subst: scalan.Library.Subst): Nullable[scalan.Library.Subst]

    Permalink
    Attributes
    protected
    Definition Classes
    ThunksFunctions
  147. def matchExps(s1: scalan.Library.Sym, s2: scalan.Library.Sym, allowInexactMatch: Boolean, subst: scalan.Library.Subst): Nullable[scalan.Library.Subst]

    Permalink
    Attributes
    protected
    Definition Classes
    Functions
  148. def matchIterators(i1: Iterator[_], i2: Iterator[_], allowInexactMatch: Boolean, subst: scalan.Library.Subst): Nullable[scalan.Library.Subst]

    Permalink
    Attributes
    protected
    Definition Classes
    Functions
  149. def mirrorApply[A, B](lam: scalan.Library.Lambda[A, B], s: scalan.Library.Ref[A]): scalan.Library.Ref[B]

    Permalink
    Definition Classes
    Functions
  150. def mkApply[A, B](f: scalan.Library.Ref[(A) ⇒ B], x: scalan.Library.Ref[A]): scalan.Library.Ref[B]

    Permalink
    Definition Classes
    Functions
  151. def mkLambda[A, B, C](f: (scalan.Library.Ref[A], scalan.Library.Ref[B]) ⇒ scalan.Library.Ref[C])(implicit eA: scalan.Library.LElem[A], eB: scalan.Library.LElem[B]): scalan.Library.Ref[((A, B)) ⇒ C]

    Permalink
    Definition Classes
    Functions
  152. def mkLambda[A, B, C](f: (scalan.Library.Ref[A]) ⇒ (scalan.Library.Ref[B]) ⇒ scalan.Library.Ref[C])(implicit eA: scalan.Library.LElem[A], eB: scalan.Library.Elem[B]): scalan.Library.Ref[(A) ⇒ (B) ⇒ C]

    Permalink
    Definition Classes
    Functions
  153. def mkLambda[A, B](f: (scalan.Library.Ref[A]) ⇒ scalan.Library.Ref[B], mayInline: Boolean, alphaEquality: Boolean, keepOriginalFunc: Boolean)(implicit eA: scalan.Library.LElem[A]): scalan.Library.Ref[(A) ⇒ B]

    Permalink
    Definition Classes
    Functions
  154. def mkMethodCall(receiver: scalan.Library.Sym, method: Method, args: Seq[AnyRef], neverInvoke: Boolean, isAdapterCall: Boolean, resultElem: scalan.Library.Elem[_]): scalan.Library.Sym

    Permalink

    Creates new MethodCall node and returns its node ref.

    Creates new MethodCall node and returns its node ref.

    Definition Classes
    MethodCalls
  155. val nInitialDefs: Int

    Permalink
    Definition Classes
    Base
  156. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  157. def newObjEx[A](args: Any*)(implicit eA: scalan.Library.Elem[A]): scalan.Library.Ref[A]

    Permalink

    Creates new NewObject node and returns its node ref.

    Creates new NewObject node and returns its node ref.

    Definition Classes
    MethodCalls
  158. def nodeColor(td: scalan.Library.TypeDesc, d: scalan.Library.Def[_])(implicit config: GraphVizConfig): String

    Permalink
    Attributes
    protected
    Definition Classes
    ThunksGraphVizExport
  159. def nodeColor(td: scalan.Library.TypeDesc): String

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  160. final def nodeLabel(parts: String*)(implicit config: GraphVizConfig): String

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  161. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  162. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  163. def numeric[T](implicit arg0: ExactNumeric[T]): ExactNumeric[T]

    Permalink
    Definition Classes
    NumericOps
  164. def okRegisterModules: Boolean

    Permalink

    Whether staged modules should be registered when cake is constructed and initialized.

    Whether staged modules should be registered when cake is constructed and initialized.

    Definition Classes
    Modules
  165. def onReset(): Unit

    Permalink

    Called during resetContext() operation after the core context state has been reset.

    Called during resetContext() operation after the core context state has been reset. Derived classes can override to define application specific initialization. Don't forget to call super method in the beginning of your overriding method.

    Attributes
    protected
    Definition Classes
    Base
  166. def opCost(costedValue: scalan.Library.Sym, args: Seq[scalan.Library.Ref[Int]], opCost: scalan.Library.Ref[Int]): scalan.Library.Ref[Int]

    Permalink
    Definition Classes
    UniversalOps
  167. implicit final def pairElement[A, B](implicit ea: scalan.Library.Elem[A], eb: scalan.Library.Elem[B]): scalan.Library.Elem[(A, B)]

    Permalink
    Definition Classes
    TypeDescs
  168. def partsIterator(td: scalan.Library.TypeDesc): TraversableOnce[scalan.Library.TypeDesc] { def seq: scala.collection.TraversableOnce[SizesModule.this.TypeDesc]{def seq: scala.collection.TraversableOnce[SizesModule.this.TypeDesc]{def seq: scala.collection.TraversableOnce[SizesModule.this.TypeDesc]}} }

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  169. def patternMatch(s1: scalan.Library.Sym, s2: scalan.Library.Sym): Nullable[scalan.Library.Subst]

    Permalink
    Definition Classes
    Functions
  170. def placeholder[T](implicit eT: scalan.Library.LElem[T]): scalan.Library.Ref[T]

    Permalink
    Definition Classes
    Base
    Annotations
    @inline()
  171. def propagateBinOp[T, R](op: scalan.Library.BinOp[T, R], x: scalan.Library.Ref[T], y: scalan.Library.Ref[T]): scalan.Library.Ref[R]

    Permalink

    Perform constant propagation if enabled and both arguments are Const.

    Perform constant propagation if enabled and both arguments are Const.

    returns

    null if propagation is not done

    Definition Classes
    DefRewriting
  172. def propagateUnOp[T, R](op: scalan.Library.UnOp[T, R], x: scalan.Library.Ref[T]): scalan.Library.Ref[R]

    Permalink

    Perform constant propagation if enabled and argument is Const.

    Perform constant propagation if enabled and argument is Const.

    returns

    null if propagation is not done

    Definition Classes
    DefRewriting
  173. def registerEntityObject(name: String, obj: scalan.Library.EntityObject): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Base
  174. def registerModule(moduleInfo: ModuleInfo): Unit

    Permalink

    Called once for each staged module during this cake initialization.

    Called once for each staged module during this cake initialization.

    Attributes
    protected
    Definition Classes
    Modules
  175. implicit def reifyObject[A](obj: scalan.Library.Def[A]): scalan.Library.Ref[A]

    Permalink

    Implicit injection of new definition (graph node) into universum of nodes with collapsing semantics.

    Implicit injection of new definition (graph node) into universum of nodes with collapsing semantics. If there exists node n in this IR such that obj equals n, then the value of n.self is returned, i.e. the new node obj is collapsed with already existing one. This has an effect of Common Subexpression Elimination (CSE) when an expression tree is transformed to the graph and identical subtrees are collapsed. After a reference to the node is obtained, global rewriting rules are examined and the reference may be replaced with a new one.

    Definition Classes
    Base
  176. implicit def repOrderingToOrderingOps[T](x: scalan.Library.Ref[T])(implicit n: ExactOrdering[T]): scalan.Library.OrderingOpsCls[T]

    Permalink
    Definition Classes
    OrderingOps
  177. implicit def repToThunk[A](block: scalan.Library.Ref[A]): scalan.Library.Ref[scalan.Library.Thunk[A]]

    Permalink
    Definition Classes
    Thunks
  178. def resetContext(): Unit

    Permalink
    Definition Classes
    SizesDefsBase
  179. final def rewriteBinOp[A, R](op: scalan.Library.BinOp[A, R], x: scalan.Library.Ref[A], y: scalan.Library.Ref[A]): scalan.Library.Ref[_]

    Permalink

    Rewrites application of given binary operation to the given arguments.

    Rewrites application of given binary operation to the given arguments.

    returns

    null if no rewriting is defined.

    Definition Classes
    DefRewriting
  180. final def rewriteBoolConsts(lhs: scalan.Library.Sym, rhs: scalan.Library.Sym, ifTrue: (scalan.Library.Sym) ⇒ scalan.Library.Sym, ifFalse: (scalan.Library.Sym) ⇒ scalan.Library.Sym, ifEqual: (scalan.Library.Sym) ⇒ scalan.Library.Sym, ifNegated: (scalan.Library.Sym) ⇒ scalan.Library.Sym): scalan.Library.Sym

    Permalink
    Definition Classes
    LogicalOps
    Annotations
    @inline()
  181. def rewriteDef[T](d: scalan.Library.Def[T]): scalan.Library.Ref[_]

    Permalink

    Rewrites given node to another equivalent node and returns its reference.

    Rewrites given node to another equivalent node and returns its reference.

    d

    node to be matched against rewrite patterns

    returns

    reference of new node if RW pattern is found and applied null if no rewriting is defined.

    Definition Classes
    DefRewriting
  182. def rewriteNonInvokableMethodCall(mc: scalan.Library.MethodCall): scalan.Library.Ref[_]

    Permalink

    This method is called for each MethodCall node which is about to be added to the graph.

    This method is called for each MethodCall node which is about to be added to the graph. This means mc has been examined by all the rewrite rules, but has not need rewritten. Now, if this method returns null, then mc will be added to the graph. However, in this method, mc can be examined by a second set of RW rules (kind of lower priority rules). These rules kind of context dependent, because at this point we know that the first RW set didn't triggered any rewrite.

    Definition Classes
    MethodCalls
  183. final def rewriteUnOp[A, R](op: scalan.Library.UnOp[A, R], x: scalan.Library.Ref[A]): scalan.Library.Ref[_]

    Permalink

    Rewrites application of given unary operation to the given argument.

    Rewrites application of given unary operation to the given argument.

    returns

    null if no rewriting is defined.

    Definition Classes
    DefRewriting
  184. def shouldEmitCluster(g: scalan.Library.AstGraph): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  185. def showGraphs(graph: scalan.Library.AstGraph)(implicit config: GraphVizConfig): Unit

    Permalink
    Definition Classes
    GraphVizExport
  186. def showGraphs(roots: scalan.Library.Sym*)(implicit config: GraphVizConfig): Unit

    Permalink
    Definition Classes
    GraphVizExport
  187. def sizeOf[T](value: scalan.Library.Ref[T]): scalan.Library.Ref[Long]

    Permalink
    Definition Classes
    UniversalOps
  188. def stagingExceptionMessage(message: String, syms: Seq[scalan.Library.Ref[_]]): String

    Permalink

    Prettyprint exception message

    Prettyprint exception message

    Attributes
    protected
    Definition Classes
    Base
  189. implicit final def sumElement[A, B](implicit ea: scalan.Library.Elem[A], eb: scalan.Library.Elem[B]): scalan.Library.Elem[scalan.Library.|[A, B]]

    Permalink
    Definition Classes
    TypeDescs
  190. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  191. def throwInvocationException(whatFailed: String, cause: Throwable, receiver: scalan.Library.Sym, m: Method, args: Seq[Any]): Nothing

    Permalink
    Definition Classes
    MethodCalls
  192. implicit val thunkCont: scalan.Library.Cont[scalan.Library.Thunk]

    Permalink
    Definition Classes
    Thunks
  193. implicit def thunkElement[T](implicit eItem: scalan.Library.Elem[T]): scalan.Library.Elem[scalan.Library.Thunk[T]]

    Permalink
    Definition Classes
    Thunks
  194. val thunkStack: scalan.Library.ThunkStack

    Permalink
    Attributes
    protected
    Definition Classes
    Thunks
  195. def thunk_create[A](block: ⇒ scalan.Library.Ref[A]): scalan.Library.Ref[scalan.Library.Thunk[A]]

    Permalink
    Definition Classes
    Thunks
  196. def thunk_force[A](t: scalan.Library.Th[A]): scalan.Library.Ref[A]

    Permalink
    Definition Classes
    Thunks
  197. def thunk_map[A, B](t: scalan.Library.Th[A], f: scalan.Library.Ref[(A) ⇒ B]): scalan.Library.Th[B]

    Permalink
    Definition Classes
    Thunks
  198. def thunk_map1[A, B](t: scalan.Library.Th[A], f: (scalan.Library.Ref[A]) ⇒ scalan.Library.Ref[B]): scalan.Library.Th[B]

    Permalink
    Definition Classes
    Thunks
  199. def toExp[T](d: scalan.Library.Def[T], newSym: ⇒ scalan.Library.Ref[T]): scalan.Library.Ref[T]

    Permalink

    Updates the universe of symbols and definitions, then rewrites until fix-point

    Updates the universe of symbols and definitions, then rewrites until fix-point

    d

    A new graph node to add to the universe

    newSym

    A symbol that will be used if d doesn't exist in the universe

    returns

    The symbol of the graph which is semantically(up to rewrites) equivalent to d

    Attributes
    protected[scalan]
    Definition Classes
    Base
  200. implicit final def toLazyElem[A](implicit eA: scalan.Library.Elem[A]): scalan.Library.LElem[A]

    Permalink
    Definition Classes
    TypeDescs
  201. def toRep[A](x: A)(implicit eA: scalan.Library.Elem[A]): scalan.Library.Ref[A]

    Permalink

    Lifting of data values to IR nodes.

    Lifting of data values to IR nodes.

    Definition Classes
    Base
  202. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  203. def transformProductParam(x: Any, t: scalan.Library.Transformer): Any

    Permalink

    Transforms this object into new one by applying t to every Ref inside its structure.

    Transforms this object into new one by applying t to every Ref inside its structure. The structure is build out of Seq, Array, Option and Def values. Other structure items remain unchanged and copied to the new instance.

    Attributes
    protected
    Definition Classes
    Base
  204. def tryConvert[From, To](eFrom: scalan.Library.Elem[From], eTo: scalan.Library.Elem[To], x: scalan.Library.Ref[scalan.Library.Def[_]], conv: scalan.Library.Ref[(From) ⇒ To]): scalan.Library.Ref[To]

    Permalink
    Definition Classes
    UniversalOps
  205. val tuplesCache: AVHashMap[scalan.Library.Ref[_], (scalan.Library.Ref[_], scalan.Library.Ref[_])]

    Permalink
    Definition Classes
    Tuples
  206. def unfoldLambda[A, B](f: scalan.Library.Ref[(A) ⇒ B], x: scalan.Library.Ref[A]): scalan.Library.Ref[B]

    Permalink
    Definition Classes
    Functions
  207. def unfoldLambda[A, B](lam: scalan.Library.Lambda[A, B], x: scalan.Library.Ref[A]): scalan.Library.Ref[B]

    Permalink
    Definition Classes
    Functions
  208. var unfoldWithOriginalFunc: Boolean

    Permalink

    Turns on/off lambda unfolding using original function f stored in the Lambda node.

    Turns on/off lambda unfolding using original function f stored in the Lambda node. If this flag is false then this function cannot be used even if it is present in the node.

    Definition Classes
    Functions
  209. def unrefDelegate[T <: AnyRef](x: scalan.Library.Ref[T])(implicit ct: ClassTag[T]): T

    Permalink

    Create delegate instance suitable for method invocation.

    Create delegate instance suitable for method invocation. It is used when T is a class or a trait and the node referred by x doesn't conform to T. This method returns dynamically constructed instance, which conforms to T. Whenever a method of T is called on that instance, the call is intercepted and DelegatedInterceptionHandler.invoke method is called, then a new MethodCall can be constructed (which is befavior by default).

    Attributes
    protected
    Definition Classes
    MethodCalls
  210. def unzipPair[A, B](p: scalan.Library.Ref[(A, B)]): (scalan.Library.Ref[A], scalan.Library.Ref[B])

    Permalink
    Definition Classes
    Tuples
  211. def upcast[To](value: scalan.Library.Ref[_])(implicit arg0: scalan.Library.Elem[To]): scalan.Library.Ref[To]

    Permalink
    Definition Classes
    UniversalOps
  212. def upcastFun[A, B >: A](implicit arg0: scalan.Library.Elem[A]): scalan.Library.Ref[(A) ⇒ B]

    Permalink
    Definition Classes
    Functions
  213. final def updateSymbolTable[T](s: scalan.Library.Ref[T], d: scalan.Library.Def[T]): scalan.Library.Ref[T]

    Permalink

    Create or find symbol (node Ref) which refers to the given node in the table of all created symbols.

    Create or find symbol (node Ref) which refers to the given node in the table of all created symbols. The d.nodeId is the index in the _symbolTable which is DBuffer (backed by Array)

    returns

    new of existing symbol

    Definition Classes
    Base
  214. var useAlphaEquality: Boolean

    Permalink

    Global lambda equality mode used by default.

    Global lambda equality mode used by default. It is used in fun and fun2 lambda builders. If this flag is true then Lambda nodes are equal if they are the same up to renaming of symbols. (see Lambda.equals()). Each Lambda node has independent equality mode flag which is setup in the constructor.

    Definition Classes
    Functions
  215. final def valueFromRep[A](x: scalan.Library.Ref[A]): A

    Permalink

    Extract data value from Const node or throw an exception.

    Extract data value from Const node or throw an exception.

    Definition Classes
    Base
    Annotations
    @inline()
  216. def variable[T](implicit eT: scalan.Library.LElem[T]): scalan.Library.Ref[T]

    Permalink
    Definition Classes
    Base
    Annotations
    @inline()
  217. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  218. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  219. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  220. implicit def zipPair[A, B](p: (scalan.Library.Ref[A], scalan.Library.Ref[B])): scalan.Library.Ref[(A, B)]

    Permalink
    Definition Classes
    Tuples

Inherited from SizesDefs

Inherited from Sizes

Inherited from Scalan

Inherited from DefRewriting

Inherited from Modules

Inherited from Entities

Inherited from Thunks

Inherited from IfThenElse

Inherited from Functions

Inherited from ProgramGraphs

Inherited from AstGraphs

Inherited from Transforming

Inherited from UniversalOps

Inherited from Equal

Inherited from OrderingOps

Inherited from LogicalOps

Inherited from UnBinOps

Inherited from NumericOps

Inherited from Tuples

Inherited from MethodCalls

Inherited from GraphVizExport

Inherited from TypeDescs

Inherited from Base

Inherited from AnyRef

Inherited from Any

Ungrouped