zstd/contrib/experimental_dict_builders/fastCover
2018-07-26 13:53:13 -07:00
..
fastCover.c Add array to keep track of frequency within active segment, fix malloc bug, update benchmarking result 2018-07-26 13:53:13 -07:00
fastCover.h Add Fast Cover Dictionary Builder 2018-07-25 16:34:07 -07:00
main.c Add array to keep track of frequency within active segment, fix malloc bug, update benchmarking result 2018-07-26 13:53:13 -07:00
Makefile Add Fast Cover Dictionary Builder 2018-07-25 16:34:07 -07:00
README.md Allow d=6 2018-07-25 18:10:09 -07:00
test.sh Allow d=6 2018-07-25 18:10:09 -07:00

FastCover Dictionary Builder

Permitted Arguments:

Input File/Directory (in=fileName): required; file/directory used to build dictionary; if directory, will operate recursively for files inside directory; can include multiple files/directories, each following "in=" Output Dictionary (out=dictName): if not provided, default to fastCoverDict Dictionary ID (dictID=#): nonnegative number; if not provided, default to 0 Maximum Dictionary Size (maxdict=#): positive number; in bytes, if not provided, default to 110KB Size of Selected Segment (k=#): positive number; in bytes; if not provided, default to 200 Size of Dmer (d=#): either 6 or 8; if not provided, default to 8 Number of steps (steps=#): positive number, if not provided, default to 32 Percentage of samples used for training(split=#): positive number; if not provided, default to 100

###Running Test: make test

###Usage: To build a random dictionary with the provided arguments: make ARG= followed by arguments

Examples:

make ARG="in=../../../lib/dictBuilder out=dict100 dictID=520" make ARG="in=../../../lib/dictBuilder in=../../../lib/compress"