You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This pipeline wont continue to run after step1 because sup3r currently updates status files using the command name ('forward-pass') whereas using the key name ('step1'/'step2') would keep the pipeline running.
After step1 is done the status file will be similar to the following
and rerunning will just report that forward-pass is done and stop.
Solution
There are a few places in sup3r code where status files are written/updated with pipeline_step=module_name, where module_name is the command name. Instead the key identifier ('step1'/'step2' in the example above) should be passed through.
The text was updated successfully, but these errors were encountered:
Yeah this is a long-standing issue with the original reV pipeline code that i never got around to fixing... Why do you want to run multiple forward passes?
Yeah this is a long-standing issue with the original reV pipeline code that i never got around to fixing... Why do you want to run multiple forward passes?
With the new era + wtk models the output is much more dynamic and thus the spatial padding required to avoid seams is extreme. I've dealt with this by doing spatial forward passes with netcdf output on much larger spatial extents (the entire Ukraine extent) which requires almost no spatial padding. I then do a temporal forward pass on the spatial fwp output.
Bug Description
Current setup doesn't accommodate pipelines with duplicate commands. For example:
This pipeline wont continue to run after step1 because sup3r currently updates status files using the command name ('forward-pass') whereas using the key name ('step1'/'step2') would keep the pipeline running.
After step1 is done the status file will be similar to the following
and rerunning will just report that forward-pass is done and stop.
Solution
There are a few places in sup3r code where status files are written/updated with
pipeline_step=module_name
, where module_name is the command name. Instead the key identifier ('step1'/'step2' in the example above) should be passed through.The text was updated successfully, but these errors were encountered: