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. Buffer[] evaluateCUDA(Operation[] ops, Buffer[Operation] args = null)
    Buffer[]
    evaluateCUDA
    (
    Operation[] ops
    ,
    Buffer[Operation] args = null
    )
  2. Buffer evaluateCUDA(Operation op, Buffer[Operation] args = null)

Parameters

ops
Type: Operation[]

The operations to be evaluated.

args
Type: Buffer[Operation]

A set of optional variable assignments.

Return Value

Type: Buffer[]

The result of evaluating ops.

Meta