Uses of Interface
org.cytoscape.cycl.CyCLBuffer
Packages that use CyCLBuffer
Package
Description
This package provides an interface to OpenCL from Cytoscape core and Cytoscape apps.
-
Uses of CyCLBuffer in org.cytoscape.cycl
Methods in org.cytoscape.cycl that return CyCLBufferModifier and TypeMethodDescriptionCyCLDevice.createBuffer(byte[] data) Allocate a buffer that will be both read and written to/from the device.CyCLDevice.createBuffer(byte[] data, int bits) Allocates memory on this device and fills it with host data.CyCLDevice.createBuffer(double[] data) Allocate a buffer that will be both read and written to/from the device.CyCLDevice.createBuffer(double[] data, int bits) Allocates memory on this device and fills it with host data.CyCLDevice.createBuffer(float[] data) Allocate a buffer that will be both read and written to/from the device.CyCLDevice.createBuffer(float[] data, int bits) Allocates memory on this device and fills it with host data.CyCLDevice.createBuffer(int[] data) Allocate a buffer that will be both read and written to/from the device.CyCLDevice.createBuffer(int[] data, int bits) Allocates memory on this device and fills it with host data.CyCLDevice.createBuffer(long[] data) Allocate a buffer that will be both read and written to/from the device.CyCLDevice.createBuffer(long[] data, int bits) Allocates memory on this device and fills it with host data.CyCLDevice.createBuffer(short[] data) Allocate a buffer that will be both read and written to/from the device.CyCLDevice.createBuffer(short[] data, int bits) Allocates memory on this device and fills it with host data.CyCLDevice.createBuffer(Class<?> type, int elements) Allocates memory on this device without filling it with any data.CyCLDevice.createBuffer(Class<?> type, int elements, int bits) Allocates memory on this device without filling it with any data.CyCLDevice.createReadBuffer(byte[] data) Allocate a buffer that will be read from the device.CyCLDevice.createReadBuffer(double[] data) Allocate a buffer that will be read from the device.CyCLDevice.createReadBuffer(float[] data) Allocate a buffer that will be read from the device.CyCLDevice.createReadBuffer(int[] data) Allocate a buffer that will be read from the device.CyCLDevice.createReadBuffer(long[] data) Allocate a buffer that will be read from the device.CyCLDevice.createReadBuffer(short[] data) Allocate a buffer that will be read from the device.CyCLDevice.createWriteBuffer(byte[] data) Allocate a buffer that will be sent to the device and fills it with host data.CyCLDevice.createWriteBuffer(double[] data) Allocate a buffer that will be sent to the device and fills it with host data.CyCLDevice.createWriteBuffer(float[] data) Allocate a buffer that will be sent to the device and fills it with host data.CyCLDevice.createWriteBuffer(int[] data) Allocate a buffer that will be sent to the device and fills it with host data.CyCLDevice.createWriteBuffer(long[] data) Allocate a buffer that will be sent to the device and fills it with host data.CyCLDevice.createWriteBuffer(short[] data) Allocate a buffer that will be sent to the device and fills it with host data.Methods in org.cytoscape.cycl with parameters of type CyCLBufferModifier and TypeMethodDescriptionvoidCyCLBuffer.setFromDevice(CyCLBuffer src) Copies data from another device buffer to this one.voidCyCLBuffer.setFromDevice(CyCLBuffer src, long bytes, long offsetSrc, long offsetDst) Copies data from another device buffer to this one.