Packages

trait NonInlineTensor extends Tensor

Source
Tensors.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. NonInlineTensor
  2. Tensor
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def padding: Float

    Definition Classes
    Tensor
  2. abstract def shape: Array[Int]

    Returns the sizes of each dimension of this Tensor.

    Returns the sizes of each dimension of this Tensor.

    Definition Classes
    Tensor
    Note

    The returned array should be considered as immutable. Changing the array is an undefined behavior.

    ,

    The return value will be Array.empty if this Tensor is a scalar.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def %(rightHandSide: Tensor): InlineTensor

    Definition Classes
    Tensor
  4. def *(rightHandSide: Tensor): InlineTensor

    Definition Classes
    Tensor
  5. def +(rightHandSide: Tensor): InlineTensor

    Definition Classes
    Tensor
  6. def -(rightHandSide: Tensor): InlineTensor

    Definition Classes
    Tensor
  7. def ->[B](y: B): (NonInlineTensor, B)
    Implicit
    This member is added by an implicit conversion from NonInlineTensor to ArrowAssoc[NonInlineTensor] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. def /(rightHandSide: Tensor): InlineTensor

    Definition Classes
    Tensor
  9. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def broadcast(newShape: Array[Int]): TransformedTensor

    Definition Classes
    Tensor
  12. def cache: AutoCloseable

    Allocates device-side cache for this Tensor, and returns a java.lang.AutoCloseable to release the cache.

    Allocates device-side cache for this Tensor, and returns a java.lang.AutoCloseable to release the cache.

    Note

    This method can be called multiple times on one Tensor. Only one copy of cache will be allocated, which will be finally released until all java.lang.AutoCloseable returned by cache method are closed.

  13. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  14. lazy val closure: (arrayTerm)#Element
    Attributes
    protected
    Definition Classes
    NonInlineTensorTensor
    Annotations
    @transient()
  15. def doCache: Do[NonInlineTensor.this.type]

    Allocates device-side cache that are managed by the RAII.scala library.

    Allocates device-side cache that are managed by the RAII.scala library.

    Note

    This method is similar to cache, except the life cycle of the cache can be automatically managed.

  16. def ensuring(cond: (NonInlineTensor) ⇒ Boolean, msg: ⇒ Any): NonInlineTensor
    Implicit
    This member is added by an implicit conversion from NonInlineTensor to Ensuring[NonInlineTensor] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (NonInlineTensor) ⇒ Boolean): NonInlineTensor
    Implicit
    This member is added by an implicit conversion from NonInlineTensor to Ensuring[NonInlineTensor] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: ⇒ Any): NonInlineTensor
    Implicit
    This member is added by an implicit conversion from NonInlineTensor to Ensuring[NonInlineTensor] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): NonInlineTensor
    Implicit
    This member is added by an implicit conversion from NonInlineTensor to Ensuring[NonInlineTensor] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def flatArray: Future[Array[Trees.FloatTrees.FloatTerm.JvmValue]]

    Returns an asynchronous task to read this Tensor into a scala.Array, which is linearized in row-majoy order.

    Returns an asynchronous task to read this Tensor into a scala.Array, which is linearized in row-majoy order.

    Definition Classes
    Tensor
  24. def flatBuffer: Do[FloatBuffer]

    Returns a RAII managed asynchronous task to read this Tensor into an off-heap memory, which is linearized in row-majoy order.

    Returns a RAII managed asynchronous task to read this Tensor into an off-heap memory, which is linearized in row-majoy order.

    Definition Classes
    Tensor
  25. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from NonInlineTensor to StringFormat[NonInlineTensor] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  26. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. def nonInline: NonInlineTensor.this.type

    Definition Classes
    NonInlineTensorTensor
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. def permute(dimensions: Array[Int]): TransformedTensor

    Definition Classes
    Tensor
  34. def reshape(newShape: Array[Int]): NonInlineTensor

    Returns a new Tensor of new shape and the same data of this Tensor.

    Returns a new Tensor of new shape and the same data of this Tensor.

    Definition Classes
    Tensor
    Note

    The data in this Tensor is considered as row-major order when reshape. You can create another column-major version reshape by reversing the shape:

    def columnMajorReshape[Category <: Tensors](tensor: Category#Tensor, newShape: Array[Int]): Category#Tensor = {
      tensor.permute(tensor.shape.indices.reverse.toArray).reshape(newShape.reverse).permute(newShape.indices.reverse.toArray)
    }
  35. def scale(newShape: Array[Int]): TransformedTensor

    Definition Classes
    Tensor
  36. def split(dimension: Int): IndexedSeq[TransformedTensor]

    Definition Classes
    Tensor
  37. def sum: NonInlineTensor

    Definition Classes
    Tensor
  38. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  39. def toString(): String

    Definition Classes
    Tensor → AnyRef → Any
  40. def translate(offset: Array[Double], newShape: Array[Int] = shape): TransformedTensor

    Definition Classes
    Tensor
  41. def unary_+: NonInlineTensor.this.type

    Definition Classes
    Tensor
  42. def unary_-: InlineTensor

    Definition Classes
    Tensor
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  46. def [B](y: B): (NonInlineTensor, B)
    Implicit
    This member is added by an implicit conversion from NonInlineTensor to ArrowAssoc[NonInlineTensor] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from NonInlineTensor to any2stringadd[NonInlineTensor] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (nonInlineTensor: any2stringadd[NonInlineTensor]).+(other)
    Definition Classes
    any2stringadd

Inherited from Tensor

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from NonInlineTensor to any2stringadd[NonInlineTensor]

Inherited by implicit conversion StringFormat from NonInlineTensor to StringFormat[NonInlineTensor]

Inherited by implicit conversion Ensuring from NonInlineTensor to Ensuring[NonInlineTensor]

Inherited by implicit conversion ArrowAssoc from NonInlineTensor to ArrowAssoc[NonInlineTensor]

General information

Methods that provides general information of this Tensor.

Slow actions

Actions that can actually perform delayed operations in order to read the data from the device to JVM, or change the internal state of this Tensor.

Delayed operators

Operators that return new Tensors of delay-evaluated computational graphs. The actually computation will be only performed when Slow actions are called.

Ungrouped