Mathias Rav
Mathias Rav
I have implemented temp file accounting in the compressor thread in the `snappy_atomic_stats` branch. I am going to review before merging into `snappy`, and then I can run a proper...
I have investigated temp file usage a bit further, since the temp file usage over time in flow accumulation is different in TPIE master and TPIE snappy. I have made...
I am going to experiment with extracting out base classes of `virtsrc` and `virtdest` in virtual.h such that everything relating to the `push` method is put into a subclass. We...
@SSoelvsten Ubuntu 22.04 is fine - you don't have to test on 20.04. About the commit: `Fix missing * operator in tpie::packed_array::iter_base` - can you please remove all the reformatting...
I have pushed a fix to truncate not updating the temporary space statistic, but I don't believe this actually fixes the issue in raster construction. I'm running it in valgrind...
The constructor was hidden in commit f1d4d926b024c6dc91cdcec690fac582031e267f as part of a bigger commit that "fixes the documentation", whatever that means. I'm guessing I had problems getting doxygen to run, so...
This is currently possible by doing the following: ``` c++ tpie::compressor_thread & compressorThread = tpie::the_compressor_thread(); tpie::compressor_thread_lock lock(compressorThread); compressorThread.set_preferred_compression(lock, tpie::compression_scheme::none); ``` This will disable compression for new blocks written to streams...
I tried the following patch, but it gives me all kinds of double free/corruption errors from libc. Any ideas? ``` diff diff --git a/tpie/file_base_crtp.h b/tpie/file_base_crtp.h index 9274d87..16f9356 100644 --- a/tpie/file_base_crtp.h...