Add memory stats to benchmark

This commit is contained in:
John J. Camilleri
2021-02-17 15:02:39 +01:00
parent b4fce5db59
commit 8e1fa4981f
2 changed files with 10 additions and 3 deletions

View File

@@ -28,7 +28,8 @@ Comparing PGF, PGF2, LPGF along following criteria:
### Running
```
stack build --test --bench --no-run-tests --no-run-benchmarks && time stack bench
stack build --test --bench --no-run-tests --no-run-benchmarks && time PGF_ONLY=1 stack bench
stack build --test --bench --no-run-tests --no-run-benchmarks && time LPGF_ONLY=1 stack bench
stack build --test --bench --no-run-tests --no-run-benchmarks
stack bench --benchmark-arguments "+RTS -T -RTS"
PGF_ONLY=1 stack bench --benchmark-arguments "+RTS -T -RTS"
LPGF_ONLY=1 stack bench --benchmark-arguments "+RTS -T -RTS"
```