Home | History | Annotate | Download | only in renderscript

Lines Matching full:kernels

22  * ScriptGroup creates a group of kernels that are executed
24 * The kernels may be connected internally or to an external allocation.
35 * script kernels and connections. Attempting to create a
39 * Currently, all kernels in a ScriptGroup must be from separate
40 * Script objects. Attempting to use multiple kernels from the same
97 * Allocation to be used for kernels that require an input
117 * Allocation to be used for the kernels that require an output
136 * Execute the ScriptGroup. This will run all the kernels in
149 * First, all kernels to be used by the ScriptGroup should be added.
151 * Second, add connections between kernels. There are two types
159 * cannot contain cycles. Currently, all kernels used in a ScriptGroup
160 * must come from different Script objects. Additionally, all kernels
284 "Kernels may not be added once connections exist.");
396 long[] kernels = new long[mKernelCount];
402 kernels[idx++] = kid.getID(mRS);
446 long id = mRS.nScriptGroupCreate(kernels, src, dstk, dstf, types);