Ejemplo n.º 1
0
 def wrapper(f):
     return APP_FACTORY_FACTORY.make(apptype,
                                     f,
                                     data_flow_kernel=data_flow_kernel,
                                     executors=executors,
                                     cache=cache,
                                     walltime=walltime)
Ejemplo n.º 2
0
 def wrapper(f):
     return APP_FACTORY_FACTORY.make(apptype,
                                     f,
                                     executor=executor,
                                     sites=sites,
                                     cache=cache,
                                     walltime=walltime)
Ejemplo n.º 3
0
Archivo: app.py Proyecto: djf604/parsl
 def Exec(f):
     return APP_FACTORY_FACTORY.make(apptype, executor, f, walltime=walltime)
Ejemplo n.º 4
0
 def Exec(f):
     return APP_FACTORY_FACTORY.make(apptype, executor, f,
                                     sites=sites,
                                     cache=cache,
                                     walltime=walltime)