Class: OpenCL::ULong2

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

Overview

Maps the cl_ulong2 type of OpenCL

Instance Method Summary collapse

Constructor Details

#initialize(s0 = 0, s1 = 0) ⇒ ULong2

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



621
622
623
624
625
626
627
628
629
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 621

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

Instance Method Details

#inspectObject



647
648
649
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 647

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

#s0Object

Reads the s0 member



631
632
633
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 631

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



639
640
641
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 639

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

#s1Object

Reads the s1 member



635
636
637
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 635

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



643
644
645
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 643

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

#to_sObject



651
652
653
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 651

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