Trait

com.thoughtworks.compute.OpenCL

UseAllCpuDevices

Related Doc: package OpenCL

Permalink

trait UseAllCpuDevices extends UseAllDevicesByType

Source
OpenCL.scala
Linear Supertypes
UseAllDevicesByType, OpenCL, DefaultCloseable, MonadicCloseable[UnitContinuation], AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UseAllCpuDevices
  2. UseAllDevicesByType
  3. OpenCL
  4. DefaultCloseable
  5. MonadicCloseable
  6. AnyRef
  7. 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

Type Members

  1. type CommandQueue = OpenCL.CommandQueue[UseAllCpuDevices.this.type]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  2. type DeviceBuffer[Element] = OpenCL.DeviceBuffer[UseAllCpuDevices.this.type, Element]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  3. type DeviceId = OpenCL.DeviceId[UseAllCpuDevices.this.type]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  4. type Event = OpenCL.Event[UseAllCpuDevices.this.type]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  5. type Kernel = OpenCL.Kernel[UseAllCpuDevices.this.type]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  6. type PlatformId = OpenCL.PlatformId[UseAllCpuDevices.this.type]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  7. type Program = OpenCL.Program[UseAllCpuDevices.this.type]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL

Abstract Value Members

  1. abstract def acquireCommandQueue: Do[CommandQueue]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  2. abstract def handleOpenCLNotification(errorInfo: String, privateInfo: Option[ByteBuffer]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  3. abstract val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from UseAllCpuDevices to any2stringadd[UseAllCpuDevices] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (UseAllCpuDevices, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from UseAllCpuDevices to ArrowAssoc[UseAllCpuDevices] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def allocateBuffer[Element](size: Long)(implicit memory: Memory[Element]): Do[DeviceBuffer[Element]]

    Permalink

    Returns an uninitialized buffer of Element on device.

    Returns an uninitialized buffer of Element on device.

    Attributes
    protected
    Definition Classes
    OpenCL
  7. def allocateBufferFrom[Element, HostBuffer](hostBuffer: HostBuffer)(implicit memory: Aux[Element, HostBuffer]): Do[DeviceBuffer[Element]]

    Permalink

    Returns a buffer of Element on device whose content is copied from hostBuffer.

    Returns a buffer of Element on device whose content is copied from hostBuffer.

    Attributes
    protected
    Definition Classes
    OpenCL
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. lazy val context: Long

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  11. def createCommandQueue(deviceId: DeviceId, properties: Map[Int, Long]): CommandQueue

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  12. def createKernel(program: Program): Kernel

    Permalink

    Creates single kernel from this Program.

    Creates single kernel from this Program.

    Attributes
    protected
    Definition Classes
    OpenCL
    Exceptions thrown

    com.thoughtworks.compute.OpenCL.Exceptions.InvalidValue if the this Program has more than one kernel.

  13. def createKernels(program: Program): Seq[Kernel]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  14. def createProgramWithSource(sourceCode: TraversableOnce[CharSequence]): Program

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  15. def defaultProgramOptions: CharSequence

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  16. lazy val deviceCapabilities: (DeviceId) ⇒ CLCapabilities

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  17. lazy val deviceIds: Seq[DeviceId]

    Permalink
    Attributes
    protected
    Definition Classes
    UseAllDevicesByTypeOpenCL
  18. val deviceType: Status

    Permalink
    Attributes
    protected
    Definition Classes
    UseAllCpuDevicesUseAllDevicesByType
  19. def dispatch(command: (CommandQueue) ⇒ Do[Event]): Do[Event]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  20. def enqueueReadBuffer[Element, Destination](commandQueue: CommandQueue, deviceBuffer: DeviceBuffer[Element], hostBuffer: Destination, preconditionEvents: Event*)(implicit memory: Aux[Element, Destination]): Do[Event]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  21. def ensuring(cond: (UseAllCpuDevices) ⇒ Boolean, msg: ⇒ Any): UseAllCpuDevices

    Permalink
    Implicit information
    This member is added by an implicit conversion from UseAllCpuDevices to Ensuring[UseAllCpuDevices] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: (UseAllCpuDevices) ⇒ Boolean): UseAllCpuDevices

    Permalink
    Implicit information
    This member is added by an implicit conversion from UseAllCpuDevices to Ensuring[UseAllCpuDevices] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: Boolean, msg: ⇒ Any): UseAllCpuDevices

    Permalink
    Implicit information
    This member is added by an implicit conversion from UseAllCpuDevices to Ensuring[UseAllCpuDevices] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. def ensuring(cond: Boolean): UseAllCpuDevices

    Permalink
    Implicit information
    This member is added by an implicit conversion from UseAllCpuDevices to Ensuring[UseAllCpuDevices] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  25. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  27. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  28. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from UseAllCpuDevices to StringFormat[UseAllCpuDevices] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  29. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  30. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  31. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  32. def monadicClose: UnitContinuation[Unit]

    Permalink
    Definition Classes
    OpenCL → DefaultCloseable → MonadicCloseable
  33. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  36. lazy val platformCapabilities: CLCapabilities

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  37. lazy val platformId: PlatformId

    Permalink
    Attributes
    protected
    Definition Classes
    UseAllDevicesByTypeOpenCL
  38. def platformIds: Seq[PlatformId]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  39. def releaseContext: UnitContinuation[Unit]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. def waitForStatus(event: Event, callbackType: Status): UnitContinuation[Status]

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  46. def [B](y: B): (UseAllCpuDevices, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from UseAllCpuDevices to ArrowAssoc[UseAllCpuDevices] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from UseAllDevicesByType

Inherited from OpenCL

Inherited from DefaultCloseable

Inherited from MonadicCloseable[UnitContinuation]

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped