CUDAPlan

A Plan stores all the resources (preallocated buffers, custom CUDA kernels) required to evaluate nodes from the Operation graph.

An instance of Plan can be constructed using the compileCUDA function. The primary use case for a CUDAPlan is when the same set of operations are likely to be evaluated more than once. This prevents the dopt CUDA runtime from reallocating and optimising the CUDA kernels every time the same set of operations is to be executed.

Constructors

this
this(Operation[] outputs)
Undocumented in source.

Destructor

~this
~this()
Undocumented in source.

Members

Functions

cleanup
void cleanup()
Undocumented in source. Be warned that the author may not have intended to support it.
execute
void execute(Buffer[Operation] args, Buffer[] rets)

Executes the plan.

execute
Buffer[] execute(Buffer[Operation] args)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

profiler
long[string] profiler;
Undocumented in source.

Meta