https://github.com/matsutaku/bit-fitting
Solving bit-fitting problem
https://github.com/matsutaku/bit-fitting
Last synced: 7 months ago
JSON representation
Solving bit-fitting problem
- Host: GitHub
- URL: https://github.com/matsutaku/bit-fitting
- Owner: MatsuTaku
- Created: 2020-02-01T15:40:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-06T04:56:32.000Z (over 5 years ago)
- Last Synced: 2025-03-14T19:56:03.796Z (7 months ago)
- Language: C++
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bit-fitting
## Benchmark usage
```bash
# Build program
mkdir build
cd build
cmake ..
make
cd ..# Setup to plot benchmark resuit
python -m venv env
source env/bin/activate
pip install -r requirements.txt# Run benchmark
build/bench | tee >(python plot_bench.py)
```