Class: OpenCL::Half
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- OpenCL::Half
- Defined in:
- lib/opencl_ruby_ffi/Arithmetic_gen.rb
Overview
Maps the cl_half type of OpenCL
Instance Method Summary collapse
-
#initialize(s0 = 0.0) ⇒ Half
constructor
Creates a new Half 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) ⇒ Half
Creates a new Half with members set to 0 or to the user specified values
217 218 219 220 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 217 def initialize( s0 = 0.0 ) super() self[:s0] = s0 end |
Instance Method Details
#s0 ⇒ Object
Reads the s0 member
222 223 224 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 222 def s0 return self[:s0] end |
#s0=(value) ⇒ Object
Sets the s0 member to value
226 227 228 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 226 def s0=(value) self[:s0] = value end |
#to_s ⇒ Object
229 230 231 |
# File 'lib/opencl_ruby_ffi/Arithmetic_gen.rb', line 229 def to_s return "Half{ #{self[:s0]} }" end |