Class: OpenCL::Float2

Inherits:
Struct
  • Object
show all
Defined in:
lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb

Overview

Maps the cl_float2 type of OpenCL

Instance Method Summary collapse

Constructor Details

#initialize(s0 = 0.0, s1 = 0.0) ⇒ Float2

Creates a new Float2 with members set to 0 or to the user specified values. If a Pointer is passed as the first argument, Float2 maps the memory pointed.



660
661
662
663
664
665
666
667
668
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 660

def initialize( s0 = 0.0, s1 = 0.0 )
  if s0.is_a?(FFI::Pointer) then
    super(s0)
  else
    super()
    self[:s0] = s0
    self[:s1] = s1
  end
end

Instance Method Details

#inspectObject



686
687
688
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 686

def inspect
  return "#<#{self.class.name}: #{self[:s0]}, #{self[:s1]}>"
end

#s0Object

Reads the s0 member



670
671
672
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 670

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



678
679
680
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 678

def s0=(value)
 self[:s0] = value
end

#s1Object

Reads the s1 member



674
675
676
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 674

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



682
683
684
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 682

def s1=(value)
 self[:s1] = value
end

#to_sObject



690
691
692
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 690

def to_s
  return "Float2{ #{self[:s0]}, #{self[:s1]} }"
end