pycnic / pysimkernel

A Python package to control parameter scans and iterations for computational experiments
ISC License
1 stars 2 forks source link

Avoid costly input generation #29

Open andsor opened 8 years ago

andsor commented 8 years ago

We need to take special care for generating costly input because basically, the backends re-calculates all the inputs every time a new task is called by the jug scheduler

so for now, I propose to delegate and encapsule costly input generation to the simulation function

andsor commented 8 years ago

Update after discussion with @debsankha

In contrast to the above, we shall treat each iteration of the input generator as a computational task in its own right (e.g. for costly generation of input).

Questions:

References: