Home | History | Annotate | Download | only in renderscript

Lines Matching defs:kernels

27  * A group of kernels that are executed
30 * In addition to kernels, a script group may contain invocable functions as well.
32 * produced by its member kernels.
34 * The API disallows cyclic dependencies among kernels in a script group,
35 * effectively making it a directed acyclic graph (DAG) of kernels.
37 * Grouping kernels together allows for more efficient execution. For example,
474 * Allocation to be used for kernels that require an input
496 * Allocation to be used for the kernels that require an output
517 * Execute the ScriptGroup. This will run all the kernels in
533 * First, all kernels to be used by the ScriptGroup should be added.
535 * Second, add connections between kernels. There are two types
543 * cannot contain cycles. Currently, all kernels used in a ScriptGroup
544 * must come from different Script objects. Additionally, all kernels
671 "Kernels may not be added once connections exist.");
783 long[] kernels = new long[mKernelCount];
789 kernels[idx++] = kid.getID(mRS);
833 long id = mRS.nScriptGroupCreate(kernels, src, dstk, dstf, types);