https://github.com/lquenti/blackheap
An blackbox approach to I/O modelling.
https://github.com/lquenti/blackheap
benchmark fuse hpc kernel-density-estimation linear-regression performance-analysis statistics
Last synced: 19 days ago
JSON representation
An blackbox approach to I/O modelling.
- Host: GitHub
- URL: https://github.com/lquenti/blackheap
- Owner: lquenti
- License: mit
- Created: 2022-04-14T13:34:09.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-09-12T20:25:02.000Z (5 months ago)
- Last Synced: 2025-10-19T15:57:59.564Z (4 months ago)
- Topics: benchmark, fuse, hpc, kernel-density-estimation, linear-regression, performance-analysis, statistics
- Language: Rust
- Homepage:
- Size: 9.76 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blackheap
# BIG RECODE, `old-v0` is the old branch
This tool creates a performance model of your I/O speed and further allows to predict future preformance.
## Note
There is a **big recode** right now. But how does one eat an elephant...
## How to get it running
### Locally, normal device
Normally
```
cargo build --release
```
should suffice
### [SCC cluster](https://gwdg.de/hpc/systems/scc/)
- Use `rustup`, not modules
- Get a up to date rust compiler via `rustup update`
- `cc`, which is mapped to the default `gcc`, is too old.
- Load a newer gcc via `module load gcc/11.4.0`
- Tell rust to use that one via `CC=$(which gcc) cargo build --release`
### [Emmy HLRN cluster](https://gwdg.de/hpc/systems/emmy/)
- Use `rustup`, not modules
- Get a up to date rust compiler via `rustup update`
- get the newest `gcc` as module as well
- Tell rust to use that one via `CC=$(which gcc) cargo build --release`