delay.py 86 B

12345
  1. from starpu import task
  2. def delayed(f):
  3. def submit():
  4. task.submit(f)
  5. return submit