Erik Schnetter
Erik Schnetter
This mostly improves error messages (when built with `CCTK_DEBUG`).
@rhaas80 pong!
I looked at the code, and it seems that conduit is using `std::endl` instead of `\n` everywhere. I don't think that's a good programming guideline. It might be worthwhile changing...
I've created a working branch for ADIOS2 support: https://github.com/LLNL/conduit/pull/1389
One main difference between HDF5 and ADIOS2 is that HDF5 executes all actions (e.g. "add attribute", "write dataset") directly. ADIOS2, on the other hand, only remembers what needs to be...
That sounds good.
You don't need to wait for an upstream release; the version numbers do not need to agree. (This happens frequently in Yggdrasil.)
I like this idea. We did the same in Carpet. Instead of using an automatic cache I recommend splitting the interpolation function into two. The first only sets up things,...
The main difference is that an interpolation setup can be used right away by the interpolator, it does not need to search the cache, and does not need to ensure...