Daniel Baker

Results 122 comments of Daniel Baker

I mostly access zlib as is through gzgetc and gzgets, which don’t have terribly intuitive liftovers. More intuitive would be a pointer to read from like a file, but at...

I meant conversion or adaptation. (IE, making a pigz-version of gzwrite/gzread/gzgetc/gzgets.) I mostly am imagining that making those successive calls wouldn’t often benefit from parallelization unless you were filling a...

According to [this issue](https://github.com/madler/pigz/issues/36), decompression is fundamentally single-threaded and can't be improved using pigz except for handing other portions of the task to other threads, which can sometimes make a...

I get the following error when simply including the imap header, not using it with -std=c++17 or -std=c++16 on gcc5.1.0. ``` In file included from ../cppitertools/zip.hpp:4:0, from ../cppitertools/imap.hpp:4, from itertest.cpp:6:...

Sure. With -std=c++17: ``` g++ -I. -I.. -I../cppitertools/ itertest.cpp -O3 -DNDEBUG -Wall -Wunreachable-code -o itertest -lz -std=c++17 In file included from ../cppitertools/zip.hpp:4:0, from ../cppitertools/imap.hpp:4, from itertest.cpp:6: ../cppitertools/internal/iterbase.hpp:334:63: error: non-static data...

It works great on OSX with gcc6 (where I've been testing list comprehension-esque applications). I've just given up on 5.1 on the cluster. If I decide to use cppitertools for...

I've made these changes here: https://github.com/mozack/abra/pull/30.

Hi Ben, I agree - it would be nice. It would be possible to put together a wrapper that selects the right version. And thanks for letting me know about...

If you have time, could you try the s256 binary from [this folder](https://github.com/dnbaker/dashing-binaries/tree/v1.0.1/release/linux) on your EPYC server? I tried something that might have fixed the problem, but I don't have...

I've updated this to work for sets as well as maps.