1. d3d7593 changing position of endline for debug by Paul Cruz · 7 years ago
  2. e508f63 updated comments and debug statements by Paul Cruz · 7 years ago
  3. 483d936 reduced competition for completion mutex by separating mutex use based on which values is updated by Paul Cruz · 7 years ago
  4. 880f08d change how completion is measured in compression thread by Paul Cruz · 7 years ago
  5. 08d9e42 removed useless measurements by Paul Cruz · 7 years ago
  6. 95bef75 switched over to model where reading only waits on compression thread by Paul Cruz · 7 years ago
  7. 6455ec4 taking the maximum of the completion level reads in order to determine which one was waiting more by Paul Cruz · 7 years ago
  8. 05fe8dd updating debug statements by Paul Cruz · 7 years ago
  9. db109f8 measure multiple completion levels during each wait by Paul Cruz · 7 years ago
  10. 721c6a8 added bounding to compression level change by Paul Cruz · 7 years ago
  11. e929d3b added priority decision making for adapt compression level by Paul Cruz · 7 years ago
  12. 9259c7a semi working version that stabilizes by Paul Cruz · 7 years ago
  13. 82e4887 fixed bug where writeSize could be zero by Paul Cruz · 7 years ago
  14. a199164 reworked adaptCompressionLevel to only account for completion information by Paul Cruz · 7 years ago
  15. 7ab758a changed how completion is actually sampled by Paul Cruz · 7 years ago
  16. dcf609f make adaptCompressionLevel oscillate less by Paul Cruz · 7 years ago
  17. 2a22c79 call ZSTD_compressBegin() once by Paul Cruz · 7 years ago
  18. 6767abe fixing error when file size is multiple of job size (in which case, the srcSize of the last job is 0) by Paul Cruz · 7 years ago
  19. 42382c1 added some debug statements, adjusted end condition by Paul Cruz · 7 years ago
  20. 6945b3c removed previous version of completion for compression by Paul Cruz · 7 years ago
  21. 5a85c57 set up new calculations compression completion progress by Paul Cruz · 7 years ago
  22. f1ac518 split compression into smaller blocks by Paul Cruz · 7 years ago
  23. 338951c moved compression adapt to avoid warning by Paul Cruz · 7 years ago
  24. 4497ecf change compression level only right before actually performing compression. When waiting, only update waiting statistics. by Paul Cruz · 7 years ago
  25. e11bf55 added mechanism for measuring how much of a job has been created by Paul Cruz · 7 years ago
  26. 559ea4f split up read process into smaller chunks by Paul Cruz · 7 years ago
  27. 6119cd2 added additional print for help menu by Paul Cruz · 7 years ago
  28. 3d7f1af changed createCCtx() to split into initialization and creation by Paul Cruz · 7 years ago
  29. 2c4e4dd added mutex for stats struct by Paul Cruz · 7 years ago
  30. ad66faf added progress check for filewriting, put important shared data behind mutex when being read from/written to by Paul Cruz · 7 years ago
  31. a34bc30 setting up basic readme by Paul Cruz · 7 years ago
  32. 29c36cf rename completion variable, split up fwrite operations in order to track progress by Paul Cruz · 7 years ago
  33. ae47eab changed test cases to use -s setting on the diffs by Paul Cruz · 7 years ago
  34. 5af04c5 change parameters for compression level adapt by Paul Cruz · 7 years ago
  35. b3c9e02 added signal to other threads whenever error occurs by Paul Cruz · 7 years ago
  36. 6be22f1 swap buffers instead of copying memory over by Paul Cruz · 7 years ago
  37. 708238e open file outside of adaptCCtx, pass to the output thread by Paul Cruz · 7 years ago
  38. 044e40d removed freeCCtx() calls from createCCtx() so that it is not called twice during errors by Paul Cruz · 7 years ago
  39. 50ce4ea added error detection for pthread initialization, added compression completion measurement, fixed const values by Paul Cruz · 7 years ago
  40. 1ab3f06 updated tests to use different seeds when executing different tests by Paul Cruz · 7 years ago
  41. 0c8b943 removed goto statements for the most part by Paul Cruz · 7 years ago
  42. 65a4ce2 added tests for forced compression level by Paul Cruz · 7 years ago
  43. 0d9665c added additional tests for performance, allowed force compression level for testing purposes by Paul Cruz · 7 years ago
  44. 9165e97 added some tests for correctness, time, and compression ratio by Paul Cruz · 7 years ago
  45. 766663f added altering dictionary size depending on compression level by Paul Cruz · 7 years ago
  46. 7c886db changed to stderr by Paul Cruz · 7 years ago
  47. b5b18cf changed to malloc, added comment about adaptive compression level, and changed ternary operators by Paul Cruz · 7 years ago
  48. 954d999 fixed up freeCCtx() removed BYTE since it wasn't being used by Paul Cruz · 7 years ago
  49. 3c16edd added copyright header, removed clean from makefile by Paul Cruz · 7 years ago
  50. 74d3a6f passes tests with adaptive compression level by Paul Cruz · 7 years ago
  51. 5353d35 working with fixed compression level and fixed dictionary size by Paul Cruz · 7 years ago
  52. 356ddb6 working with flush job->src.size and fixed cLevel by Paul Cruz · 7 years ago
  53. 0a40185 added debug statement by Paul Cruz · 7 years ago
  54. 72a183e changed dictionary size, added debugging statements by Paul Cruz · 7 years ago
  55. 7c54e09 updated DEBUG statements by Paul Cruz · 7 years ago
  56. a3c077b added error message, updated copying dictionary into the input buffer by Paul Cruz · 7 years ago
  57. 34afb9b changed to using ZSTD_compressBegin_usingDict() and fixed strange issue with ZSTD_compressContinue() by Paul Cruz · 7 years ago
  58. 7ec5928 fixed an error where -c argument wasn't working for single files by Paul Cruz · 7 years ago
  59. f918545 made some progress on improving compression ratio, but problems exist with speed limits, and for some reason higher compression levels are really slow by Paul Cruz · 7 years ago
  60. 01fc7c4 changed how the detection of the last job works by Paul Cruz · 7 years ago
  61. c36552e dst buffer should use ZSTD_compressBound to determine how much space it needs by Paul Cruz · 7 years ago
  62. 7aa36df fixed memory leak that was happening when creating jobs by Paul Cruz · 7 years ago
  63. e410d63 made input buffer an internal part of the compression context by Paul Cruz · 7 years ago
  64. cc7f8e4 small changes by Paul Cruz · 7 years ago
  65. 7e09b50 changed name by Paul Cruz · 7 years ago
  66. ed72ea5 removed single from Makefile by Paul Cruz · 7 years ago
  67. ced3ec5 removed scripts by Paul Cruz · 7 years ago
  68. 82f0d64 removed single.c by Paul Cruz · 7 years ago
  69. 62ebbab updated error checking in each thread by Paul Cruz · 7 years ago
  70. c3ae23d added ability to compress without specifying out filename by Paul Cruz · 7 years ago
  71. 7163ffa playing around with adapt param by Paul Cruz · 7 years ago
  72. 1c9d6b2 rewrote time elapsed with UTIL by Paul Cruz · 7 years ago
  73. c0c236a changed to using compressCCtx by Paul Cruz · 7 years ago
  74. 11fc0f4 changed completed -> compressed by Paul Cruz · 7 years ago
  75. 09d7c6a changed completed variables to compressed for clarity by Paul Cruz · 7 years ago
  76. 8c0eb62 removed unnecessary comments, uncommented DEBUGLOG for later use by Paul Cruz · 7 years ago
  77. 70a4153 added ability to force output to stdout, wrote an additional test for this functionality by Paul Cruz · 7 years ago
  78. 532f439 cleaned up code for arguments a bit by Paul Cruz · 7 years ago
  79. f7e6b35 added tests that check to ensure stdout is working by Paul Cruz · 7 years ago
  80. 4679132 updated avg compression rate, also hiding progress bar behind a flag now by Paul Cruz · 7 years ago
  81. 00bc5df added compression rate to status bar by Paul Cruz · 7 years ago
  82. f351848 added data amount by Paul Cruz · 7 years ago
  83. 2939301 fixed problem with progress bar not persisting, added time elapsed by Paul Cruz · 7 years ago
  84. 57ec023 added help menu by Paul Cruz · 7 years ago
  85. b6cc084 added really simple progress update in the corner by Paul Cruz · 7 years ago
  86. ff9f2cd added some basic logic for altering compression level by Paul Cruz · 7 years ago
  87. a407ccc added ability to congregate statistics into single print statement rather than using debug by Paul Cruz · 7 years ago
  88. f57849b added ability to set initial compression level by Paul Cruz · 7 years ago
  89. 592a0d9 changed to work with std out by Paul Cruz · 7 years ago
  90. 94fe291 small changes by Paul Cruz · 7 years ago
  91. 79d4657 small changes by Paul Cruz · 7 years ago
  92. 6f3ad1b fixed the problem with pipeline tests by changing how jobs move through the threads by Paul Cruz · 7 years ago
  93. cc714f3 added print statements and debuglog by Paul Cruz · 7 years ago
  94. 3f52ca9 added more tests, changed makefile by Paul Cruz · 7 years ago
  95. faeb6e0 added filenameTable for multiple files by Paul Cruz · 7 years ago
  96. f0b9a15 added tests to run.sh by Paul Cruz · 7 years ago
  97. b421083 added some basic parsing for args by Paul Cruz · 7 years ago
  98. 898c1a5 removed references to file size computation and file size function by Paul Cruz · 7 years ago
  99. a2680e5 removed calculation of file size and replaced with limited number of available jobs by Paul Cruz · 7 years ago
  100. dd8a591 moved main logic for job creation into a separate function by Paul Cruz · 7 years ago