Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

panda-official/SfCompressor

Repository files navigation

SF Compressor

Sparse Float compressor written by Christian Vorwerk.

Installation

mkdir build && cd build
cmake ..
cmake --build .
sudo cmake --install .

CMake integration

find_package(sf_compressor REQUIRED)

add_executable(sample sample.cc)
target_link_libraries(sample PRIVATE sf_compressor::sf_compressor)