def __init__(self):
     Assembler.__init__(self)
     self.type = '__m256i'
     self.const_type = 'const %s' % (self.type)
Exemple #2
0
 def __init__(self):
     Assembler.__init__(self)
     self.type = 'int32x4_t'
     self.const_type = 'const %s' % (self.type)
Exemple #3
0
 def __init__(self, base_type):
     Assembler.__init__(self)
     self.type = base_type
     self.const_type = 'const %s' % (self.type)