Class: OpenCL::Double4
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- OpenCL::Double4
- Defined in:
- lib/opencl_ruby_ffi/Arithmetic_gen.rb
Overview
Maps the cl_double4 type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0.0, s1 = 0.0, s2 = 0.0, s3 = 0.0) ⇒ Double4
constructor
Creates a new Double4 with members set to 0 or to the user specified values.
-
#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) ⇒ Double4
Creates a new Double4 with members set to 0 or to the user specified values
1000 1001 1002 1003 1004 1005 1006 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1000 def initialize( s0 = 0.0, s1 = 0.0, s2 = 0.0, s3 = 0.0 ) super() self[:s0] = s0 self[:s1] = s1 self[:s2] = s2 self[:s3] = s3 end |
Instance Method Details
#s0 ⇒ Object
Reads the s0 member
1008 1009 1010 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1008 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
1024 1025 1026 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1024 def s0=(value) self[:s0] = value end |
#s1 ⇒ Object
Reads the s1 member
1012 1013 1014 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1012 def s1 return self[:s1] end |
#s1=(value) ⇒ Object
Sets the s1 member to value
1028 1029 1030 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1028 def s1=(value) self[:s1] = value end |
#s2 ⇒ Object
Reads the s2 member
1016 1017 1018 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1016 def s2 return self[:s2] end |
#s2=(value) ⇒ Object
Sets the s2 member to value
1032 1033 1034 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1032 def s2=(value) self[:s2] = value end |
#s3 ⇒ Object
Reads the s3 member
1020 1021 1022 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1020 def s3 return self[:s3] end |
#s3=(value) ⇒ Object
Sets the s3 member to value
1036 1037 1038 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1036 def s3=(value) self[:s3] = value end |
#to_s ⇒ Object
1039 1040 1041 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 1039 def to_s return "Double4{ #{self[:s0]}, #{self[:s1]}, #{self[:s2]}, #{self[:s3]} }" end |