Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/panda-official/sfcompressor

Sparse Float Compressor
https://github.com/panda-official/sfcompressor

Last synced: about 1 month ago
JSON representation

Sparse Float Compressor

Awesome Lists containing this project

README

        

# SF Compressor

Sparse Float compressor written by Christian Vorwerk.

## Installation

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

## CMake integration

```cmake
find_package(sf_compressor REQUIRED)

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