Start execution of _range kernels. When kernel.execute(globalSize) is invoked, Aparapi will schedule the execution of globalSize kernels. If the execution mode is GPU then the kernels will execute as OpenCL code on the GPU device. Otherwise, if the mode is
(Range _range)
| 2801 | * |
| 2802 | */ |
| 2803 | public synchronized Kernel execute(Range _range) { |
| 2804 | return (execute(_range, 1)); |
| 2805 | } |
| 2806 | |
| 2807 | @Override |
| 2808 | @SuppressWarnings("deprecation") |