Remove test file

This commit is contained in:
Truman Kilen 2025-01-21 13:06:59 -06:00
parent b2bc86683d
commit a33d5ef963
2 changed files with 0 additions and 7 deletions

View file

@ -1,6 +0,0 @@
Ì
In tools and when compressing large inputs in one call, consider using
$OodleXLZ_Compress_AsyncAndWait (in the Oodle2 Ext lib) instead to get parallelism. Alternatively,
chop the data into small fixed size chunks (we recommend at least 256KiB, i.e. 262144 bytes) and
call compress on each of them, which decreases compression ratio but makes for trivial parallel
compression and decompression.

View file

@ -315,7 +315,6 @@ mod test {
) )
.unwrap(); .unwrap();
std::fs::write("comp.bin", &buffer).unwrap();
dbg!((data.len(), buffer.len())); dbg!((data.len(), buffer.len()));
let mut uncomp = vec![0; data.len()]; let mut uncomp = vec![0; data.len()];