Class: OpenCL::Float
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- OpenCL::Float
- Defined in:
- lib/opencl_ruby_ffi/Arithmetic_gen.rb
Overview
Maps the cl_float type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0.0) ⇒ Float
constructor
Creates a new Float 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.
- #to_s ⇒ Object
Constructor Details
#initialize(s0 = 0.0) ⇒ Float
Creates a new Float with members set to 0 or to the user specified values
175 176 177 178 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 175 def initialize( s0 = 0.0 ) super() self[:s0] = s0 end |
Instance Method Details
#s0 ⇒ Object
Reads the s0 member
180 181 182 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 180 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
184 185 186 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 184 def s0=(value) self[:s0] = value end |
#to_s ⇒ Object
187 188 189 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 187 def to_s return "Float{ #{self[:s0]} }" end |