sqybi / CUDA_Compression

A GPU-based LZSS compression algorithm, highly tuned for NVIDIA GPGPUs and for streaming data, leveraging the respective strengths of CPUs and GPUs together.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CUDA_Compression_tool

To compile, simply $ make Usage for compression: ./main -i {inputfile} -o {outputfile}

Usage for decompression: ./main -d 1 -i {inputfile} -o {outputfile}


Default buffer size for the GPU pipeline is set to at the top of the main.c file. Change BUFSIZE macro to change that variable. MINSIZE defines the minimum size required to make use of the GPU processing. Setting this variable to a lower value can lead program to indefinite behaviour.

About

A GPU-based LZSS compression algorithm, highly tuned for NVIDIA GPGPUs and for streaming data, leveraging the respective strengths of CPUs and GPUs together.


Languages

Language:C 62.7%Language:Cuda 36.4%Language:Makefile 0.9%