-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Closed
Labels
GCGarbage collectorGarbage collectorregressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version
Milestone
Description
Just showing versioninfo()
takes 55 s (varies from run to run)
$ ./julia/julia-1.10.0-beta2/bin/julia --threads 55 --gcthreads=16 --startup-file=no
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.10.0-beta2 (2023-08-17)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia> @time display(versioninfo())
Julia Version 1.10.0-beta2
Commit a468aa198d0 (2023-08-17 06:27 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: 64 × AMD EPYC 7371 16-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-15.0.7 (ORCJIT, znver1)
Threads: 70 on 64 virtual cores
nothing
55.698993 seconds (439.98 k allocations: 29.438 MiB, 99.01% gc time, 99.99% compilation time)
but then setting --threads auto
takes more than I could wait
$ ./julia/julia-1.10.0-beta2/bin/julia --threads auto --startup-file=no
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.10.0-beta2 (2023-08-17)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia> Threads.ngcthreads()
32
julia> @time display(versioninfo())
Setting --threads auto --gcthreads 1
seems to be fine.
kpamnany and PallHaraldsson
Metadata
Metadata
Assignees
Labels
GCGarbage collectorGarbage collectorregressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version