Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/panda-official/sfcompressor
- Owner: panda-official
- Created: 2022-04-05T07:29:29.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-20T13:28:23.000Z (over 2 years ago)
- Last Synced: 2023-04-01T10:46:17.060Z (over 1 year ago)
- Language: C++
- Size: 72.3 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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)
```