opencl_ruby_ffi 1.3.7 → 1.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/opencl_ruby_ffi.rb +1 -0
- data/lib/opencl_ruby_ffi/Buffer.rb +7 -1
- data/lib/opencl_ruby_ffi/CommandQueue.rb +10 -4
- data/lib/opencl_ruby_ffi/Context.rb +82 -20
- data/lib/opencl_ruby_ffi/Device.rb +90 -11
- data/lib/opencl_ruby_ffi/Event.rb +17 -17
- data/lib/opencl_ruby_ffi/Image.rb +7 -1
- data/lib/opencl_ruby_ffi/Kernel.rb +68 -58
- data/lib/opencl_ruby_ffi/Mem.rb +13 -7
- data/lib/opencl_ruby_ffi/Pipe.rb +8 -0
- data/lib/opencl_ruby_ffi/Platform.rb +36 -11
- data/lib/opencl_ruby_ffi/Program.rb +21 -17
- data/lib/opencl_ruby_ffi/SVM.rb +1 -1
- data/lib/opencl_ruby_ffi/Sampler.rb +7 -6
- data/lib/opencl_ruby_ffi/ext.rb +1 -0
- data/lib/opencl_ruby_ffi/intel/unified_shared_memory_preview.rb +67 -40
- data/lib/opencl_ruby_ffi/khr/device_uuid.rb +119 -0
- data/lib/opencl_ruby_ffi/opencl_ruby_ffi_base.rb +292 -98
- data/lib/opencl_ruby_ffi/opencl_ruby_ffi_base_gen.rb +83 -173
- data/lib/opencl_ruby_ffi/opencl_ruby_ffi_library.rb +181 -0
- data/lib/opencl_ruby_ffi/opencl_types.rb +4 -0
- data/opencl_ruby_ffi.gemspec +2 -2
- metadata +6 -4
@@ -67,6 +67,10 @@ module OpenCL
|
|
67
67
|
[ :cl_uint, :cl_profiling_info ],
|
68
68
|
[ :cl_bitfield, :cl_sampler_properties ],
|
69
69
|
[ :cl_uint, :cl_kernel_exec_info ],
|
70
|
+
[ :cl_bitfield, :cl_device_atomic_capabilities ],
|
71
|
+
[ :cl_uint, :cl_khronos_vendor_id ],
|
72
|
+
[ :cl_bitfield, :cl_mem_properties ],
|
73
|
+
[ :cl_uint, :cl_version ],
|
70
74
|
[ :cl_uint, :cl_gl_object_type ],
|
71
75
|
[ :cl_uint, :cl_gl_texture_info ],
|
72
76
|
[ :cl_uint, :cl_gl_platform_info ],
|
data/opencl_ruby_ffi.gemspec
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'opencl_ruby_ffi'
|
3
|
-
s.version = "1.3.
|
3
|
+
s.version = "1.3.12"
|
4
4
|
s.author = "Brice Videau"
|
5
5
|
s.email = "bvideau@anl.gov"
|
6
6
|
s.homepage = "https://github.com/Nanosim-LIG/opencl-ruby"
|
7
7
|
s.summary = "Ruby OpenCL FFI bindings"
|
8
|
-
s.description = "Ruby OpenCL FFI bindings. OpenCL
|
8
|
+
s.description = "Ruby OpenCL FFI bindings. OpenCL 3.0 ready"
|
9
9
|
s.files = Dir[ 'opencl_ruby_ffi.gemspec', 'LICENSE', 'lib/**/**/*.rb', '.yardopts', 'templates_custom/default/module/setup.rb' ]
|
10
10
|
s.license = 'BSD-2-Clause'
|
11
11
|
s.required_ruby_version = '>= 1.8.7'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opencl_ruby_ffi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brice Videau
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: narray
|
@@ -70,7 +70,7 @@ dependencies:
|
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: 1.0.0
|
73
|
-
description: Ruby OpenCL FFI bindings. OpenCL
|
73
|
+
description: Ruby OpenCL FFI bindings. OpenCL 3.0 ready
|
74
74
|
email: bvideau@anl.gov
|
75
75
|
executables: []
|
76
76
|
extensions: []
|
@@ -106,6 +106,7 @@ files:
|
|
106
106
|
- lib/opencl_ruby_ffi/intel/unofficial.rb
|
107
107
|
- lib/opencl_ruby_ffi/khr/d3d10_sharing.rb
|
108
108
|
- lib/opencl_ruby_ffi/khr/d3d11_sharing.rb
|
109
|
+
- lib/opencl_ruby_ffi/khr/device_uuid.rb
|
109
110
|
- lib/opencl_ruby_ffi/khr/dx9_media_sharing.rb
|
110
111
|
- lib/opencl_ruby_ffi/khr/egl_event.rb
|
111
112
|
- lib/opencl_ruby_ffi/khr/egl_image.rb
|
@@ -124,6 +125,7 @@ files:
|
|
124
125
|
- lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb
|
125
126
|
- lib/opencl_ruby_ffi/opencl_ruby_ffi_base.rb
|
126
127
|
- lib/opencl_ruby_ffi/opencl_ruby_ffi_base_gen.rb
|
128
|
+
- lib/opencl_ruby_ffi/opencl_ruby_ffi_library.rb
|
127
129
|
- lib/opencl_ruby_ffi/opencl_types.rb
|
128
130
|
- opencl_ruby_ffi.gemspec
|
129
131
|
- templates_custom/default/module/setup.rb
|
@@ -146,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
148
|
- !ruby/object:Gem::Version
|
147
149
|
version: '0'
|
148
150
|
requirements: []
|
149
|
-
rubygems_version: 3.
|
151
|
+
rubygems_version: 3.2.5
|
150
152
|
signing_key:
|
151
153
|
specification_version: 4
|
152
154
|
summary: Ruby OpenCL FFI bindings
|