Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug fix for
max_collect_interval
computation (#45727)
Currently constrained to `totalmem / ncores / 2` for `_P64` which results in a very short collect interval when you're running with a smaller number of threads on a machine with many cores. Changes this to `totalmem / nthreads / 2` which, for two of our tests, resulted in 40% and 60% runtime reduction (!!) as well as GC time reduction from 46% to 10% and 64% to 11%.
- Loading branch information