Support for Dynamically Loaded Filter plugins #1042
-
Hello, I'm trying to design a dynamic filter plugin for (very) sparse data. I assume no one has already done that! Thanks, Alex |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Good morning, HighFive is likely of zero value when writing such a filter. Only after it has been written could it, if desired, be wrapped for HighFive. To get the filter to play "nicely" with HighFive there's two choices:
I'm not sure which one is better. There is an open PR to load Blosc: #980. We haven't made it past the issues of how to find Blosc and/or Blosc2. But it's a short, nice PR that shows Approach 2. Since you say it's sparse data related:
Please feel free to ask additional questions. |
Beta Was this translation helpful? Give feedback.
Good morning, HighFive is likely of zero value when writing such a filter. Only after it has been written could it, if desired, be wrapped for HighFive.
To get the filter to play "nicely" with HighFive there's two choices:
.getId()
on the required HighFive objects.HighFive/include/highfive/H5PropertyList.hpp
Lines 247 to 262 in 9cbd834