LZ bench for ZSTD #819
-
Hi, I would like to know how did you get the levels of ZSTD compression ? did you use lz bench to get that ? if so, the block size which we mention in the command (lzbench -b128 -v -ezstd file) will restrict the distance <=128KB ? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 14 replies
-
No, I have not used lzbench. If you tell me which numbers you are referring to, I can tell you how they are made. |
Beta Was this translation helpful? Give feedback.
-
Stream_0_ActDataFile_0.zst.gz is the compressed file. |
Beta Was this translation helpful? Give feedback.
-
Seems like the block is truncated. |
Beta Was this translation helpful? Give feedback.
-
Hi, There was an issue in the block size calculation for this case, now i am able to decode the compressed file, but some how the distance is wrong , the sequence has to be (LL,ML,OFF) = (11,6,11), but it looks like (11,6,9). when we see the sequence section Could you please check at your end if possible ? |
Beta Was this translation helpful? Give feedback.
That seems correct and valid to me.
Of course in this particular case using a predefined table will be smaller, since all symbols are less than 8 bits. For longer RLE runs that is not always the case.