Correction runners as friends
-
Review changes -
-
Download -
Patches
-
Plain diff
Status
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.
Goal
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:
- Device passes most correction schema (changes) along to runner which has
reconfigure
which looks at hash (before: device figures out everything, uses loads of special methods to configure runner)- This, in particular, means that the "correction flags" (in the end passed to correction kernel) live
- Device gets simpler interaction for running corrections and generating previews
- Related to flags, now the kernel runner must itself figure out what to do
- Before: host device tells it to load, correct, do previews, maybe correct again etc.
- Medium-long term plan (after this MR): should allow concurrent processing, meaning stateful "load this, now process whatever you've loaded" is out
- Other things like specialized
_load_constant_to_runner
goes away because each runner has uniformload_constant
interface
Input handler flow
One 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:
- The input handler (now
ON_DATA
again*) is only inBaseCorrection
- It uses
_get_data_from_hash
(may be subclass-specific) to get all the relevant data out of the hash - It asks the kernel runner about
expected_input_shape
(needed to fix up wrong axis order from DAQ) - It asks the kernel runner about
expected_output_shape
(needed to prepare the next shmem output slot) - It then passes the extracted data to the kernel runner's
correct
method
And similarly, the BaseKernelRunner
hosts the overarching correct
method, letting subclass define certain parts:
-
correct
inBaseKernelRunner
gets all the data from_get_data_from_hash
- It uses
_make_output_buffers
(may be subclass-specific) to set up some buffers the kernel will write to - It uses the subclass-specific
_correct
to actually do the correction- This
_correct
gets all the data and the output buffers, so most of_get_data_from_hash
and_make_output_buffers
goes here
- This
- Then, previews are computed, with
_preview_data_views
(may be subclass-specific) providing the views of the relevantndarray
s to preview- This gets the image data, any additional data from
_get_data_from_hash
, and the output buffers from_make_output_buffers
and can return arbitrary list of buffer views - Each buffer view returned should match a preview output of the device; this allow preview computation to just be applying the same preview reduction function on each view and write it out
- This gets the image data, any additional data from
Although 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.
Follow-up work
I've removed the frame filter functionality for now for two reasons
- It complicates
BaseCorrection
, configuration, and shape handling - It slices data out before it gets previewable; could be an issue for detector monitoring
- OTOH, the operator may want the
nanmean
of only the relevant / lit frames; but frame filter cannot accommodate both use cases
- OTOH, the operator may want the
I know that MID tends to use the frame filter, so I'd just add a trivial frame selection kernel with the same logic.
Deployment notes
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.
Merge request reports
- version 471ed2d8e5
- version 469fe68fe9
- version 45c698965f
- version 447f7525a3
- version 4391cad872
- version 42bab075fc
- version 41e5d7aef1
- version 40b772f61d
- version 3924eaacdd
- version 38ef4c6e20
- version 3719c1ace9
- version 361484f043
- version 354f3e81ee
- version 34676dbf0c
- version 331ff1d347
- version 32cb5e50a0
- version 316aa72eae
- version 30b5a45635
- version 29ecaae35e
- version 282f28e585
- version 27149d14be
- version 26091a2d2b
- version 2529a5a12e
- version 2439d62cf5
- version 2391d8e921
- version 2246c38f61
- version 21647154a7
- version 204a8b10b5
- version 19519562ab
- version 189516c465
- version 17a380fadd
- version 16c2f4241d
- version 158a84a867
- version 14a1ba55ea
- version 139470f667
- version 128376f043
- version 113e9fef16
- version 10fe875311
- version 93fa1738b
- version 8c4fe62db
- version 7c6730bef
- version 683941c9d
- version 584c3eacd
- version 4bf29fe97
- version 3ead2f289
- version 2dcd7e21d
- version 16edec30c
- master (base)
- latest version800f97e073 commits,
- version 471ed2d8e572 commits,
- version 469fe68fe971 commits,
- version 45c698965f68 commits,
- version 447f7525a367 commits,
- version 4391cad87266 commits,
- version 42bab075fc64 commits,
- version 41e5d7aef162 commits,
- version 40b772f61d61 commits,
- version 3924eaacdd60 commits,
- version 38ef4c6e2059 commits,
- version 3719c1ace958 commits,
- version 361484f04357 commits,
- version 354f3e81ee56 commits,
- version 34676dbf0c54 commits,
- version 331ff1d34753 commits,
- version 32cb5e50a052 commits,
- version 316aa72eae51 commits,
- version 30b5a4563549 commits,
- version 29ecaae35e48 commits,
- version 282f28e58545 commits,
- version 27149d14be44 commits,
- version 26091a2d2b43 commits,
- version 2529a5a12e42 commits,
- version 2439d62cf541 commits,
- version 2391d8e92140 commits,
- version 2246c38f6139 commits,
- version 21647154a738 commits,
- version 204a8b10b536 commits,
- version 19519562ab35 commits,
- version 189516c46534 commits,
- version 17a380fadd33 commits,
- version 16c2f4241d31 commits,
- version 158a84a86730 commits,
- version 14a1ba55ea29 commits,
- version 139470f66728 commits,
- version 128376f04326 commits,
- version 113e9fef1625 commits,
- version 10fe87531123 commits,
- version 93fa1738b22 commits,
- version 8c4fe62db21 commits,
- version 7c6730bef19 commits,
- version 683941c9d18 commits,
- version 584c3eacd16 commits,
- version 4bf29fe9715 commits,
- version 3ead2f28911 commits,
- version 2dcd7e21d10 commits,
- version 16edec30c9 commits,
- Side-by-side
- Inline