Skip to content

Commit

Permalink
paq8gen_v4
Browse files Browse the repository at this point in the history
  • Loading branch information
GotthardtZ committed Feb 7, 2021
1 parent 5e23c18 commit fc403da
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,12 @@ paq8gen_v3 by Zoltán Gotthardt
- New APM: "APMPost" to support the new Arithmetic Encoder with higher precision probability
- Cleaned up NormalModel, refined some contexts
- Cleaned up SSE stage and Shared
- Tweaks, cosmetic changes
- Tweaks, cosmetic changes

paq8gen_v4 by Zoltán Gotthardt
2021.02.07
- Small tweaks in MormalModel, LineModel and MatchModel
- Small tweak in APMPost: decreased a-priory counts
- Small tweak in SSE stage: using two APMPost maps
- Tweaked model memory use
- Tweaked mixer scaling
13 changes: 7 additions & 6 deletions paq8gen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
see CHANGELOG for version history
*/


//////////////////////// Versioning ////////////////////////////////////////

#define PROGNAME "paq8gen"
#define PROGVERSION "3" //update version here before publishing your changes
#define PROGYEAR "2020"
#define PROGVERSION "4" //update version here before publishing your changes
#define PROGYEAR "2021"


#include "utils.hpp"
Expand All @@ -34,10 +35,10 @@ static void printHelp() {
" " PROGNAME " -LEVEL[SWITCHES] INPUTSPEC [OUTPUTSPEC]\n"
"\n"
" -LEVEL:\n"
" -0 = no compression, only transformations when applicable (uses 29 MB)\n"
" -1 -2 -3 = compress using less memory (85, 94, 113 MB)\n"
" -4 -5 -6 -7 -8 -9 = use more memory (152, 229, 383, 691, 1306, 2537 MB)\n"
" -10 -11 -12 = use even more memory (5000, 9925, 18751 MB)\n"
" -0 = no compression, only transformations when applicable (uses 33 MB)\n"
" -1 -2 -3 = compress using less memory (88, 97, 116 MB)\n"
" -4 -5 -6 -7 -8 -9 = use more memory (153, 228, 378, 678, 1278, 2478 MB)\n"
" -10 -11 -12 = use even more memory (4877, 9676, 19274 MB)\n"
"\n"
" INPUTSPEC:\n"
" The input may be a FILE or a PATH/FILE.\n"
Expand Down

0 comments on commit fc403da

Please sign in to comment.