Esempio n. 1
0
 def __init__(self, pm, name, ctx, lambda_functions, imports):
     Transformation.__init__(self)
     self.passmanager = pm
     self.ctx = ctx
     self.prefix = name
     self.lambda_functions = lambda_functions
     self.imports = imports
     self.global_declarations = pm.gather(GlobalDeclarations, ctx.module)
Esempio n. 2
0
 def __init__(self):
     Transformation.__init__(self, OptimizableGenexp)
Esempio n. 3
0
 def __init__(self):
     Transformation.__init__(self, Locals, Globals)
Esempio n. 4
0
 def __init__(self):
     Transformation.__init__(self)
     self.imports = set()
     self.symbols = dict()
Esempio n. 5
0
 def __init__(self):
     Transformation.__init__(self, Identifiers)
Esempio n. 6
0
 def __init__(self):
     self.counter = 0
     Transformation.__init__(self)
Esempio n. 7
0
 def __init__(self):
     Transformation.__init__(self)
     # Remap self.visit_XXXX() to self.attach_data() generic method
     for s in GatherOMPData.statements:
         setattr(self, "visit_" + s, lambda node_: self.attach_data(node_))
     self.current = list()
Esempio n. 8
0
 def __init__(self):
     Transformation.__init__(self, PotentialIterator, Aliases)
Esempio n. 9
0
 def __init__(self, pm, name, ctx):
     Transformation.__init__(self)
     self.passmanager = pm
     self.ctx = ctx
     self.prefix = name
     self.lambda_functions = list()
Esempio n. 10
0
 def __init__(self, pm, ctx):
     Transformation.__init__(self)
     self.ctx = ctx
     self.passmanager = pm
Esempio n. 11
0
 def __init__(self):
     Transformation.__init__(self)
     for s in GatherOMPData.statements:
         setattr(self, "visit_" + s, lambda node_: self.attach_data(node_))
     self.current = list()
Esempio n. 12
0
 def __init__(self, pm, ctx):
     Transformation.__init__(self)
     self.ctx = ctx
     self.passmanager = pm
     self.global_declarations = pm.gather(GlobalDeclarations, ctx.module)
Esempio n. 13
0
 def __init__(self):
     Transformation.__init__(self, TypeDependencies,
                             OrderedGlobalDeclarations)
Esempio n. 14
0
 def __init__(self):
     Transformation.__init__(self, NormalizeTuples,
                             OptimizableComprehension)
Esempio n. 15
0
 def __init__(self):
     Transformation.__init__(self, Globals)
     self.imports = set()
Esempio n. 16
0
 def __init__(self):
     Transformation.__init__(self, NormalizeTuples,
                             PotentialIterator)
Esempio n. 17
0
 def __init__(self):
     self.renamings = dict()
     Transformation.__init__(self, Identifiers)
Esempio n. 18
0
 def __init__(self):
     Transformation.__init__(self, ConstantExpressions)
Esempio n. 19
0
 def __init__(self):
     Transformation.__init__(self)
     # Remap self.visit_XXXX() to self.attach_data() generic method
     for s in GatherOMPData.statements:
         setattr(self, "visit_" + s, lambda node_: self.attach_data(node_))
     self.current = list()