Correction runners as friends
Compare changes
- David Hammer authored
+ 31
− 31
@@ -830,47 +830,47 @@ def manager_device_overview(
Done with what I had in mind for now.
Sorry that the diff is so big.
At least, looking at git diff --numstat master
, the individual too long files are a bit more balanced; some of the complexity of BaseCorrection
is now kept in BaseKernelRunner
and PreviewFriend
.
Also, detector-specific correction classes are much simpler.
Will do some more testing and figure out how to review.
Simplify interaction between correction device and kernel runner. To this end, must make the kernel runner smarter and more responsible for handling its relevant subschemata. Some plans:
reconfigure
which looks at hash (before: device figures out everything, uses loads of special methods to configure runner)
_load_constant_to_runner
goes away because each runner has uniform load_constant
interfaceOne of the big changes is the flow of the input handler.
This section explains a solution to the issues I was pondering earlier (left as quote below).
Before, BaseCorrection
would have the main input handler which would extract (most, though not always all) relevant data from the hash and handle (most) quirks we tend to encounter before handing over to subclass-specific process_data
.
However, these different process_data
implementations had a lot of overlap.
Two obvious options: keep them separate, encapsulating all the things they do in small reusable functions or unify them and provide hooks / utility functions to fill in per subclass.
Currently trying out the latter:
ON_DATA
again*) is only in BaseCorrection
_get_data_from_hash
(may be subclass-specific) to get all the relevant data out of the hashexpected_input_shape
(needed to fix up wrong axis order from DAQ)expected_output_shape
(needed to prepare the next shmem output slot)correct
methodAnd similarly, the BaseKernelRunner
hosts the overarching correct
method, letting subclass define certain parts:
correct
in BaseKernelRunner
gets all the data from _get_data_from_hash
_make_output_buffers
(may be subclass-specific) to set up some buffers the kernel will write to_correct
to actually do the correction
_correct
gets all the data and the output buffers, so most of _get_data_from_hash
and _make_output_buffers
goes here_preview_data_views
(may be subclass-specific) providing the views of the relevant ndarray
s to preview
_get_data_from_hash
, and the output buffers from _make_output_buffers
and can return arbitrary list of buffer viewsAlthough an improvement to the previous version, I'm not pleased that the different parts are still so tightly coupled. Not sure how to avoid this.
*A long time ago, we switched from ON_DATA
to ON_INPUT
, partly because - in case we'd get irrelevant sources coming in - the latter would allow us to not read content of certain input hashes unless relevant to us.
ON_DATA
is simpler, however, and as I understand from Gero's description of the surrounding C++ code changes, we don't decide whether or not to read the input any longer (the C++ code reads hashes and just gives them to us), so the potential performance edge of ON_INPUT
should be gone.
And we don't need trainmatched data, so it's not important to line up hashes on same input event.
I've removed the frame filter functionality for now for two reasons
BaseCorrection
, configuration, and shape handlingnanmean
of only the relevant / lit frames; but frame filter cannot accommodate both use casesI know that MID tends to use the frame filter, so I'd just add a trivial frame selection kernel with the same logic.
Having restructured the preview output infrastructure anyway, I also tied it to more node-local subschemata.
So now each preview output can have its own settings about how to reduce (it was kind of silly to, say, look at mean of corrected and then also have to get mean of gain map).
With a node for each output, preview.[preview_name]
, I figured we could move the outputs there, so preview.[preview_name].output
.
This means that managers all over will need an update to the preview layer mapping* and stored scenes referencing previews need updating.
*Technically, the manager can now figure out the preview outputs easily by looking (in the schema) at the keys under preview
.
Indeed, the correction_device_overview
scene does exactly this to generate per-device preview scene links.