-
Notifications
You must be signed in to change notification settings - Fork 5
Tiling #5
Description
Currently no tiling is foreseen in the dummy version. This is o.k. for the beginning.
The question I have is where the tiling is done in the end. This is in particular also relevant for the parallelization.
I think, deciding this quite soon is important as it has implications on the structure of the overall code development.
Like I see it, the dummy version could represent the processing for a single workflow. Thus it receives the coordinates of the target area and does the entire processing for this area.
The engine calling this processor (our current dummy) would then be responsible to split the processing of a larger area into different chunks and distribute across different computing nodes as well as collect the results again (map-reduce).
If this is the baseline, then we don't need to think about parallelization at all for the dummy, as this will be done on a higher level in the end.