Class: BOAST::Multiplication

Inherits:
BasicBinaryOperator show all
Defined in:
lib/BOAST/Operators.rb

Class Method Summary collapse

Methods inherited from BasicBinaryOperator

to_s

Methods inherited from Operator

convert, get_vector_name, inspect

Methods included from PrivateStateAccessor

private_boolean_state_accessor, private_state_accessor

Class Method Details

.basic_usage(arg1, arg2) ⇒ Object



355
356
357
# File 'lib/BOAST/Operators.rb', line 355

def basic_usage(arg1, arg2)
  return "(#{arg1}) * (#{arg2})" 
end

.intr_name_ARMObject



351
352
353
# File 'lib/BOAST/Operators.rb', line 351

def intr_name_ARM
  return "vmul"
end

.intr_name_X86Object



347
348
349
# File 'lib/BOAST/Operators.rb', line 347

def intr_name_X86
  return "mul"
end

.symbolObject



343
344
345
# File 'lib/BOAST/Operators.rb', line 343

def symbol
  return "*"
end