MCPcopy Index your code
hub / github.com/Syncleus/aparapi / getKernelLocalMemSizeInUse

Method getKernelLocalMemSizeInUse

src/main/java/com/aparapi/Kernel.java:2952–2954  ·  view source on GitHub ↗

Retrieves the amount of local memory used in the specified device by this kernel instance. @param device the device where the kernel is intended to run @return the number of bytes of local memory in use for the specified device and current kernel @throws QueryFailedException if the query couldn't c

(Device device)

Source from the content-addressed store, hash-verified

2950 * @throws QueryFailedException if the query couldn't complete
2951 */
2952 public long getKernelLocalMemSizeInUse(Device device) throws QueryFailedException {
2953 return prepareKernelRunner().getKernelLocalMemSizeInUse(device);
2954 }
2955
2956 /**
2957 * Retrieves the preferred work-group multiple in the specified device for this kernel instance.

Calls 1

prepareKernelRunnerMethod · 0.95