opencl_ruby_ffi 0.91 → 0.92
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/opencl_ruby_ffi/opencl_ruby_ffi_base_gen.rb +22 -18
- data/opencl_ruby_ffi.gemspec +1 -1
- metadata +1 -1
@@ -1829,9 +1829,6 @@ module OpenCL
|
|
1829
1829
|
attach_function :clGetPlatformInfo, [Platform,:cl_platform_info,:size_t,:pointer,:pointer], :cl_int
|
1830
1830
|
attach_function :clGetDeviceIDs, [Platform,:cl_device_type,:cl_uint,:pointer,:pointer], :cl_int
|
1831
1831
|
attach_function :clGetDeviceInfo, [Device,:cl_device_info,:size_t,:pointer,:pointer], :cl_int
|
1832
|
-
attach_function :clCreateSubDevices, [Device,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1833
|
-
attach_function :clRetainDevice, [Device], :cl_int
|
1834
|
-
attach_function :clReleaseDevice, [Device], :cl_int
|
1835
1832
|
callback :clCreateContext_notify, [:pointer,:pointer,:size_t,:pointer], :void
|
1836
1833
|
attach_function :clCreateContext, [:pointer,:cl_uint,:pointer,:clCreateContext_notify,:pointer,:pointer], Context
|
1837
1834
|
callback :clCreateContextFromType_notify, [:pointer,:pointer,:size_t,:pointer], :void
|
@@ -1845,7 +1842,6 @@ module OpenCL
|
|
1845
1842
|
attach_function :clGetCommandQueueInfo, [CommandQueue,:cl_command_queue_info,:size_t,:pointer,:pointer], :cl_int
|
1846
1843
|
attach_function :clCreateBuffer, [Context,:cl_mem_flags,:size_t,:pointer,:pointer], Mem
|
1847
1844
|
attach_function :clCreateSubBuffer, [Mem,:cl_mem_flags,:cl_buffer_create_type,:pointer,:pointer], Mem
|
1848
|
-
attach_function :clCreateImage, [Context,:cl_mem_flags,:pointer,:pointer,:pointer,:pointer], Mem
|
1849
1845
|
attach_function :clRetainMemObject, [Mem], :cl_int
|
1850
1846
|
attach_function :clReleaseMemObject, [Mem], :cl_int
|
1851
1847
|
attach_function :clGetSupportedImageFormats, [Context,:cl_mem_flags,:cl_mem_object_type,:cl_uint,:pointer,:pointer], :cl_int
|
@@ -1859,16 +1855,10 @@ module OpenCL
|
|
1859
1855
|
attach_function :clGetSamplerInfo, [Sampler,:cl_sampler_info,:size_t,:pointer,:pointer], :cl_int
|
1860
1856
|
attach_function :clCreateProgramWithSource, [Context,:cl_uint,:pointer,:pointer,:pointer], Program
|
1861
1857
|
attach_function :clCreateProgramWithBinary, [Context,:cl_uint,:pointer,:pointer,:pointer,:pointer,:pointer], Program
|
1862
|
-
attach_function :clCreateProgramWithBuiltInKernels, [Context,:cl_uint,:pointer,:pointer,:pointer], Program
|
1863
1858
|
attach_function :clRetainProgram, [Program], :cl_int
|
1864
1859
|
attach_function :clReleaseProgram, [Program], :cl_int
|
1865
1860
|
callback :clBuildProgram_notify, [Program.by_ref,:pointer], :void
|
1866
1861
|
attach_function :clBuildProgram, [Program,:cl_uint,:pointer,:pointer,:clBuildProgram_notify,:pointer], :cl_int
|
1867
|
-
callback :clCompileProgram_notify, [Program.by_ref,:pointer], :void
|
1868
|
-
attach_function :clCompileProgram, [Program,:cl_uint,:pointer,:pointer,:cl_uint,:pointer,:pointer,:clCompileProgram_notify,:pointer], :cl_int
|
1869
|
-
callback :clLinkProgram_notify, [Program.by_ref,:pointer], :void
|
1870
|
-
attach_function :clLinkProgram, [Context,:cl_uint,:pointer,:pointer,:cl_uint,:pointer,:clLinkProgram_notify,:pointer,:pointer], Program
|
1871
|
-
attach_function :clUnloadPlatformCompiler, [Platform], :cl_int
|
1872
1862
|
attach_function :clGetProgramInfo, [Program,:cl_program_info,:size_t,:pointer,:pointer], :cl_int
|
1873
1863
|
attach_function :clGetProgramBuildInfo, [Program,Device,:cl_program_build_info,:size_t,:pointer,:pointer], :cl_int
|
1874
1864
|
attach_function :clCreateKernel, [Program,:pointer,:pointer], Kernel
|
@@ -1877,7 +1867,6 @@ module OpenCL
|
|
1877
1867
|
attach_function :clReleaseKernel, [Kernel], :cl_int
|
1878
1868
|
attach_function :clSetKernelArg, [Kernel,:cl_uint,:size_t,:pointer], :cl_int
|
1879
1869
|
attach_function :clGetKernelInfo, [Kernel,:cl_kernel_info,:size_t,:pointer,:pointer], :cl_int
|
1880
|
-
attach_function :clGetKernelArgInfo, [Kernel,:cl_uint,:cl_kernel_arg_info,:size_t,:pointer,:pointer], :cl_int
|
1881
1870
|
attach_function :clGetKernelWorkGroupInfo, [Kernel,Device,:cl_kernel_work_group_info,:size_t,:pointer,:pointer], :cl_int
|
1882
1871
|
attach_function :clWaitForEvents, [:cl_uint,:pointer], :cl_int
|
1883
1872
|
attach_function :clGetEventInfo, [Event,:cl_event_info,:size_t,:pointer,:pointer], :cl_int
|
@@ -1894,26 +1883,20 @@ module OpenCL
|
|
1894
1883
|
attach_function :clEnqueueReadBufferRect, [CommandQueue,Mem,:cl_bool,:pointer,:pointer,:pointer,:size_t,:size_t,:size_t,:size_t,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1895
1884
|
attach_function :clEnqueueWriteBuffer, [CommandQueue,Mem,:cl_bool,:size_t,:size_t,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1896
1885
|
attach_function :clEnqueueWriteBufferRect, [CommandQueue,Mem,:cl_bool,:pointer,:pointer,:pointer,:size_t,:size_t,:size_t,:size_t,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1897
|
-
attach_function :clEnqueueFillBuffer, [CommandQueue,Mem,:pointer,:size_t,:size_t,:size_t,:cl_uint,:pointer,:pointer], :cl_int
|
1898
1886
|
attach_function :clEnqueueCopyBuffer, [CommandQueue,Mem,Mem,:size_t,:size_t,:size_t,:cl_uint,:pointer,:pointer], :cl_int
|
1899
1887
|
attach_function :clEnqueueCopyBufferRect, [CommandQueue,Mem,Mem,:pointer,:pointer,:pointer,:size_t,:size_t,:size_t,:size_t,:cl_uint,:pointer,:pointer], :cl_int
|
1900
1888
|
attach_function :clEnqueueReadImage, [CommandQueue,Mem,:cl_bool,:pointer,:pointer,:size_t,:size_t,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1901
1889
|
attach_function :clEnqueueWriteImage, [CommandQueue,Mem,:cl_bool,:pointer,:pointer,:size_t,:size_t,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1902
|
-
attach_function :clEnqueueFillImage, [CommandQueue,Mem,:pointer,:pointer,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1903
1890
|
attach_function :clEnqueueCopyImage, [CommandQueue,Mem,Mem,:pointer,:pointer,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1904
1891
|
attach_function :clEnqueueCopyImageToBuffer, [CommandQueue,Mem,Mem,:pointer,:pointer,:size_t,:cl_uint,:pointer,:pointer], :cl_int
|
1905
1892
|
attach_function :clEnqueueCopyBufferToImage, [CommandQueue,Mem,Mem,:size_t,:pointer,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1906
1893
|
attach_function :clEnqueueMapBuffer, [CommandQueue,Mem,:cl_bool,:cl_map_flags,:size_t,:size_t,:cl_uint,:pointer,:pointer,:pointer], :pointer
|
1907
1894
|
attach_function :clEnqueueMapImage, [CommandQueue,Mem,:cl_bool,:cl_map_flags,:pointer,:pointer,:pointer,:pointer,:cl_uint,:pointer,:pointer,:pointer], :pointer
|
1908
1895
|
attach_function :clEnqueueUnmapMemObject, [CommandQueue,Mem,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1909
|
-
attach_function :clEnqueueMigrateMemObjects, [CommandQueue,:cl_uint,:pointer,:cl_mem_migration_flags,:cl_uint,:pointer,:pointer], :cl_int
|
1910
1896
|
attach_function :clEnqueueNDRangeKernel, [CommandQueue,Kernel,:cl_uint,:pointer,:pointer,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1911
1897
|
attach_function :clEnqueueTask, [CommandQueue,Kernel,:cl_uint,:pointer,:pointer], :cl_int
|
1912
1898
|
callback :clEnqueueNativeKernel_notify, [:pointer], :void
|
1913
1899
|
attach_function :clEnqueueNativeKernel, [CommandQueue,:clEnqueueNativeKernel_notify,:pointer,:size_t,:cl_uint,:pointer,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1914
|
-
attach_function :clEnqueueMarkerWithWaitList, [CommandQueue,:cl_uint,:pointer,:pointer], :cl_int
|
1915
|
-
attach_function :clEnqueueBarrierWithWaitList, [CommandQueue,:cl_uint,:pointer,:pointer], :cl_int
|
1916
|
-
attach_function :clGetExtensionFunctionAddressForPlatform, [Platform,:pointer], :pointer
|
1917
1900
|
attach_function :clCreateImage2D, [Context,:cl_mem_flags,:pointer,:size_t,:size_t,:size_t,:pointer,:pointer], Mem
|
1918
1901
|
attach_function :clCreateImage3D, [Context,:cl_mem_flags,:pointer,:size_t,:size_t,:size_t,:size_t,:size_t,:pointer,:pointer], Mem
|
1919
1902
|
attach_function :clEnqueueMarker, [CommandQueue,:pointer], :cl_int
|
@@ -1922,7 +1905,6 @@ module OpenCL
|
|
1922
1905
|
attach_function :clUnloadCompiler, [:void], :cl_int
|
1923
1906
|
attach_function :clGetExtensionFunctionAddress, [:pointer], :pointer
|
1924
1907
|
attach_function :clCreateFromGLBuffer, [Context,:cl_mem_flags,:cl_GLuint,:pointer], Mem
|
1925
|
-
attach_function :clCreateFromGLTexture, [Context,:cl_mem_flags,:cl_GLenum,:cl_GLint,:cl_GLuint,:pointer], Mem
|
1926
1908
|
attach_function :clCreateFromGLRenderbuffer, [Context,:cl_mem_flags,:cl_GLuint,:pointer], Mem
|
1927
1909
|
attach_function :clGetGLObjectInfo, [Mem,:pointer,:pointer], :cl_int
|
1928
1910
|
attach_function :clGetGLTextureInfo, [Mem,:cl_gl_texture_info,:size_t,:pointer,:pointer], :cl_int
|
@@ -1930,4 +1912,26 @@ module OpenCL
|
|
1930
1912
|
attach_function :clEnqueueReleaseGLObjects, [CommandQueue,:cl_uint,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1931
1913
|
attach_function :clCreateFromGLTexture2D, [Context,:cl_mem_flags,:cl_GLenum,:cl_GLint,:cl_GLuint,:pointer], Mem
|
1932
1914
|
attach_function :clCreateFromGLTexture3D, [Context,:cl_mem_flags,:cl_GLenum,:cl_GLint,:cl_GLuint,:pointer], Mem
|
1915
|
+
begin
|
1916
|
+
attach_function :clCreateSubDevices, [Device,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1917
|
+
attach_function :clRetainDevice, [Device], :cl_int
|
1918
|
+
attach_function :clReleaseDevice, [Device], :cl_int
|
1919
|
+
attach_function :clCreateImage, [Context,:cl_mem_flags,:pointer,:pointer,:pointer,:pointer], Mem
|
1920
|
+
attach_function :clCreateProgramWithBuiltInKernels, [Context,:cl_uint,:pointer,:pointer,:pointer], Program
|
1921
|
+
callback :clCompileProgram_notify, [Program.by_ref,:pointer], :void
|
1922
|
+
attach_function :clCompileProgram, [Program,:cl_uint,:pointer,:pointer,:cl_uint,:pointer,:pointer,:clCompileProgram_notify,:pointer], :cl_int
|
1923
|
+
callback :clLinkProgram_notify, [Program.by_ref,:pointer], :void
|
1924
|
+
attach_function :clLinkProgram, [Context,:cl_uint,:pointer,:pointer,:cl_uint,:pointer,:clLinkProgram_notify,:pointer,:pointer], Program
|
1925
|
+
attach_function :clUnloadPlatformCompiler, [Platform], :cl_int
|
1926
|
+
attach_function :clGetKernelArgInfo, [Kernel,:cl_uint,:cl_kernel_arg_info,:size_t,:pointer,:pointer], :cl_int
|
1927
|
+
attach_function :clEnqueueFillBuffer, [CommandQueue,Mem,:pointer,:size_t,:size_t,:size_t,:cl_uint,:pointer,:pointer], :cl_int
|
1928
|
+
attach_function :clEnqueueFillImage, [CommandQueue,Mem,:pointer,:pointer,:pointer,:cl_uint,:pointer,:pointer], :cl_int
|
1929
|
+
attach_function :clEnqueueMigrateMemObjects, [CommandQueue,:cl_uint,:pointer,:cl_mem_migration_flags,:cl_uint,:pointer,:pointer], :cl_int
|
1930
|
+
attach_function :clEnqueueMarkerWithWaitList, [CommandQueue,:cl_uint,:pointer,:pointer], :cl_int
|
1931
|
+
attach_function :clEnqueueBarrierWithWaitList, [CommandQueue,:cl_uint,:pointer,:pointer], :cl_int
|
1932
|
+
attach_function :clGetExtensionFunctionAddressForPlatform, [Platform,:pointer], :pointer
|
1933
|
+
attach_function :clCreateFromGLTexture, [Context,:cl_mem_flags,:cl_GLenum,:cl_GLint,:cl_GLuint,:pointer], Mem
|
1934
|
+
rescue
|
1935
|
+
STDERR.puts "Warning OpenCL 1.1 loader detected"
|
1936
|
+
end
|
1933
1937
|
end
|
data/opencl_ruby_ffi.gemspec
CHANGED