Class: OpenCL::Float4
- Defined in:
- lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb
Overview
Maps the cl_float4 type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0.0, s1 = 0.0, s2 = 0.0, s3 = 0.0) ⇒ Float4
constructor
Creates a new Float4 with members set to 0 or to the user specified values.
- #inspect ⇒ Object
-
#s0 ⇒ Object
Reads the s0 member.
-
#s0=(value) ⇒ Object
Sets the s0 member to value.
-
#s1 ⇒ Object
Reads the s1 member.
-
#s1=(value) ⇒ Object
Sets the s1 member to value.
-
#s2 ⇒ Object
Reads the s2 member.
-
#s2=(value) ⇒ Object
Sets the s2 member to value.
-
#s3 ⇒ Object
Reads the s3 member.
-
#s3=(value) ⇒ Object
Sets the s3 member to value.
- #to_s ⇒ Object
Constructor Details
#initialize(s0 = 0.0, s1 = 0.0, s2 = 0.0, s3 = 0.0) ⇒ Float4
Creates a new Float4 with members set to 0 or to the user specified values. If a Pointer is passed as the first argument, Float4 maps the memory pointed.
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1233 def initialize( s0 = 0.0, s1 = 0.0, s2 = 0.0, s3 = 0.0 ) if s0.is_a?(FFI::Pointer) then super(s0) else super() self[:s0] = s0 self[:s1] = s1 self[:s2] = s2 self[:s3] = s3 end end |
Instance Method Details
#inspect ⇒ Object
1277 1278 1279 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1277 def inspect return "#<#{self.class.name}: #{self[:s0]}, #{self[:s1]}, #{self[:s2]}, #{self[:s3]}>" end |
#s0 ⇒ Object
Reads the s0 member
1245 1246 1247 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1245 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
1261 1262 1263 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1261 def s0=(value) self[:s0] = value end |
#s1 ⇒ Object
Reads the s1 member
1249 1250 1251 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1249 def s1 return self[:s1] end |
#s1=(value) ⇒ Object
Sets the s1 member to value
1265 1266 1267 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1265 def s1=(value) self[:s1] = value end |
#s2 ⇒ Object
Reads the s2 member
1253 1254 1255 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1253 def s2 return self[:s2] end |
#s2=(value) ⇒ Object
Sets the s2 member to value
1269 1270 1271 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1269 def s2=(value) self[:s2] = value end |
#s3 ⇒ Object
Reads the s3 member
1257 1258 1259 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1257 def s3 return self[:s3] end |
#s3=(value) ⇒ Object
Sets the s3 member to value
1273 1274 1275 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1273 def s3=(value) self[:s3] = value end |
#to_s ⇒ Object
1281 1282 1283 |
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1281 def to_s return "Float4{ #{self[:s0]}, #{self[:s1]}, #{self[:s2]}, #{self[:s3]} }" end |