Class: OpenCL::UInt4

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

Overview

Maps the cl_uint4 type of OpenCL

Instance Method Summary collapse

Constructor Details

#initialize(s0 = 0, s1 = 0, s2 = 0, s3 = 0) ⇒ UInt4

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



1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1062

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

Instance Method Details

#inspectObject



1106
1107
1108
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1106

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

#s0Object

Reads the s0 member



1074
1075
1076
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1074

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



1090
1091
1092
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1090

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

#s1Object

Reads the s1 member



1078
1079
1080
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1078

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



1094
1095
1096
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1094

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

#s2Object

Reads the s2 member



1082
1083
1084
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1082

def s2
 return self[:s2]
end

#s2=(value) ⇒ Object

Sets the s2 member to value



1098
1099
1100
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1098

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

#s3Object

Reads the s3 member



1086
1087
1088
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1086

def s3
 return self[:s3]
end

#s3=(value) ⇒ Object

Sets the s3 member to value



1102
1103
1104
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1102

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

#to_sObject



1110
1111
1112
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1110

def to_s
  return "UInt4{ #{self[:s0]}, #{self[:s1]}, #{self[:s2]}, #{self[:s3]} }"
end