tpie icon indicating copy to clipboard operation
tpie copied to clipboard

Templated Portable I/O Environment

Results 59 tpie issues
Sort by recently updated
recently updated
newest added

The following program pushes the unsigned 64-bit integers 1, 2, ..., 20000000 to TPIE's external memory priority queue in reverse and then pulls them afterwards (this essentially just reverses the...

I have noticed that many of my pipeline programs report that the memory limit was exceeded by 2MiB (about the memory footprint of a file_stream?). It turns out that this...

bug

This fixes the following warning in CMake during compilation. ``` CMake Warning (dev) at tpie/CMakeLists.txt:224 (add_library): Policy CMP0063 is not set: Honor visibility properties for all target types. Run "cmake...

Closes #187 by adding a `peek_back` function to `tpie::file_stream`. Furthermore also improves the order of the functions, their documentation (quite a few had missing documentation), whitespace, and adds a `read_back`...

Closes #250 as a simpler (and working) alternative to #253 . All tests pass, and the computed value seems to be slightly above the `min_m1` computed in `calculate_parameters` for a...

Closes #196 . **Proposed Changes** - [x] Deprecates `lambda` in favour of `map` (with deprecation warnings) - [x] Deprecates `exclude_lambda` in favour of a new `filter_map` (with deprecation warnings). This...

Right now, TPIE streams support forward read/can_read, forward peek/can_peek/skip, backward read_back/can_read_back. In my application, I need peek/skip backwards, so I implement it using this workaround: ``` c++ bool canPeek; T...

This of course still requires that the newest version of the documentation in the *gh-pages* branch actually is turned on in the repository's settings (takes one or two minutes to...

Closes #194 . - Add a slightly cleaned up version of Andrew Danner's example of using `tpie::file_stream` - Add comment on check of file being closed cleanly. I'm not sure...

Delete the file::stream classes.