Stop recommending non-moving GC

At least until https://gitlab.haskell.org/ghc/ghc/-/issues/23003 is fixed
This commit is contained in:
Bodigrim 2023-07-05 22:06:05 +01:00
parent 369ac48296
commit 050232ad9a
2 changed files with 0 additions and 7 deletions

View File

@ -299,9 +299,6 @@ look for another way to speed up generation of Fibonacci numbers.
Alternatively bake it into
`cabal` file as `ghc-options: "-with-rtsopts=-A32m"`.
For GHC ≥ 8.10 consider switching benchmarks to a non-moving garbage collector,
because it decreases GC pauses and corresponding noise: `+RTS --nonmoving-gc`.
* Never compile benchmarks with `-fstatic-argument-transformation`, because it
breaks a trick we use to force GHC into reevaluation of the same function application
over and over again.

View File

@ -273,10 +273,6 @@ another way to speed up generation of Fibonacci numbers.
@stack@ @bench@ @--ba@ @\'+RTS@ @-A32m\'@. Alternatively bake it into
@cabal@ file as @ghc-options:@ @\"-with-rtsopts=-A32m\"@.
For GHC 8.10 consider switching benchmarks to a non-moving garbage
collector, because it decreases GC pauses and corresponding noise:
@+RTS@ @--nonmoving-gc@.
- Never compile benchmarks with @-fstatic-argument-transformation@,
because it breaks a trick we use to force GHC into reevaluation of
the same function application over and over again.