Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lquenti/blackheap
(big refactor ongoing ETA Mid 2024) An blackbox approach to I/O modelling.
https://github.com/lquenti/blackheap
benchmark high-performance-computing hpc kernel-density-estimation linear-regression performance-analysis statistics
Last synced: about 1 month ago
JSON representation
(big refactor ongoing ETA Mid 2024) 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 (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-04T15:18:24.000Z (8 months ago)
- Last Synced: 2024-04-16T04:18:10.902Z (7 months ago)
- Topics: benchmark, high-performance-computing, hpc, kernel-density-estimation, linear-regression, performance-analysis, statistics
- Language: Rust
- Homepage:
- Size: 9.73 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
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`