Elizabeth Fischer
Elizabeth Fischer
Peter Boyle wrote: Just a small comment — I’m working on a distributed MPP cartesian grid code. github.com/paboyle/Grid Certainly not pitching it as it is niche, focussed on particle physics,...
@slayoo @tobias-loew @vukics Blitz++ is great, but let's face it... it's an old codebase from the pre-C++11 era, and has a lot of weird hacks / workarounds. It does what...
Patrick Guio wrote: I like your utilities idea. I also have some wrapper functions to read/write HDF4/5 files and use FFTW 1D transforms (in/out of place, real/complex). The Fits file...
Reformat existing documentation in modern systems: Doxygen, Markdown, ReadTheDocs.org, etc. In general, make it more searchable, more accessible, easier to use.
Patrik Jonsson wrote: One more thing that can be added to the improvements list is better handling of vectorization. The last big update to blitz was when I added support...
Thomas Vincent Wrote: One thing that we had to develop (only for 3d array) and I do thing should be part of blitz++ itself is efficient file serialization to persist...
It seems that TinyVector and std::array do the same thing. So consider typedefing one to the other when using a C++11 compiler.
Theodore Papadopoulo wrote: One task that really needs to be added is the cleanup of all the macro stuff that was needed to support old non-standard compilers. Nowadays, we can...
NetCDF zlib compression is great. However, the current Python API requires you to put 'zlib=True' on every variable you want compressed. Well... I want to compress ALL variables in my...
I would like to integrate certain flux variables over time, by summing on every PISM timestep. How is this to be done in order to ensure that the integrated flux...