You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
640 B

2 months ago
  1. # 0.95
  2. * not single header anymore (this was just too much of a hassle).
  3. * custom allocator not quite ready yet. Checked in, but still using old allocator (easy to toggle - line 15 of spp_config.h)
  4. # 0.90
  5. * stable release (single header)
  6. * known issues:
  7. - memory usage can be excessive in Windows
  8. sparsepp has a very simple default allocator based on the system malloc/realloc/free implementation,
  9. and the default Windows realloc() appears to fragment the memory, causing significantly higher
  10. memory usage than on linux. To solve this issue, I am working on a new allocator which will
  11. remedy the problem.