Trait

com.thoughtworks.compute.OpenCL

CommandQueuePool

Related Doc: package OpenCL

Permalink

trait CommandQueuePool extends OpenCL

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

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

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

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

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL

Abstract Value Members

  1. abstract val deviceIds: Seq[DeviceId]

    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
  4. abstract val numberOfCommandQueuesPerDevice: Int

    Permalink
    Attributes
    protected
  5. abstract val platformId: PlatformId

    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 CommandQueuePool to any2stringadd[CommandQueuePool] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (CommandQueuePool, B)

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

    Permalink
    Definition Classes
    AnyRef → Any
  6. lazy val acquireCommandQueue: Do[CommandQueue]

    Permalink
    Attributes
    protected
    Definition Classes
    CommandQueuePoolOpenCL
  7. 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
  8. 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
  9. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  13. 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.

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

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

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  19. 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
  20. def ensuring(cond: (CommandQueuePool) ⇒ Boolean, msg: ⇒ Any): CommandQueuePool

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  35. lazy val platformCapabilities: CLCapabilities

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  36. def platformIds: Seq[PlatformId]

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

    Permalink
    Attributes
    protected
    Definition Classes
    OpenCL
  38. lazy val shutdownCommandQueues: UnitContinuation[Unit]

    Permalink
    Attributes
    protected
  39. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

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

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

Inherited from OpenCL

Inherited from DefaultCloseable

Inherited from MonadicCloseable[UnitContinuation]

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped