Class: OpenCL::ULong4

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

Overview

Maps the cl_ulong4 type of OpenCL

Instance Method Summary collapse

Constructor Details

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

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



1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1176

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



1220
1221
1222
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1220

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

#s0Object

Reads the s0 member



1188
1189
1190
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1188

def s0
 return self[:s0]
end

#s0=(value) ⇒ Object

Sets the s0 member to value



1204
1205
1206
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1204

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

#s1Object

Reads the s1 member



1192
1193
1194
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1192

def s1
 return self[:s1]
end

#s1=(value) ⇒ Object

Sets the s1 member to value



1208
1209
1210
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1208

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

#s2Object

Reads the s2 member



1196
1197
1198
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1196

def s2
 return self[:s2]
end

#s2=(value) ⇒ Object

Sets the s2 member to value



1212
1213
1214
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1212

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

#s3Object

Reads the s3 member



1200
1201
1202
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1200

def s3
 return self[:s3]
end

#s3=(value) ⇒ Object

Sets the s3 member to value



1216
1217
1218
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1216

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

#to_sObject



1224
1225
1226
# File 'lib/opencl_ruby_ffi/opencl_arithmetic_gen.rb', line 1224

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