evaluateCUDA

Used for performing a one-off evaluation of a set of operations.

If you are planning to operate the same set of operations multiple times, but with different variables assignments, then you should construct a CUDAPlan.

  1. DeviceBuffer[] evaluateCUDA(Operation[] ops, DeviceBuffer[Operation] args)
    DeviceBuffer[]
    evaluateCUDA
    (
    Operation[] ops
    ,
    DeviceBuffer[Operation] args = null
    )
  2. DeviceBuffer evaluateCUDA(Operation op, DeviceBuffer[Operation] args)

Parameters

ops Operation[]

The operations to be evaluated.

args DeviceBuffer[Operation]

A set of optional variable assignments.

Return Value

Type: DeviceBuffer[]

The result of evaluating ops.

Meta