Skip to content

Commit 2257366

Browse files
committed
suppress precompilation in Julia 1.9.0
1 parent 6c25393 commit 2257366

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/InMemoryDatasets.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ include("stat/ds_stat.jl")
197197
include("precompile/precompile.jl")
198198
include("precompile/warmup.jl")
199199
include("precompile/create_sysimage.jl")
200-
_precompile()
200+
# FIXME currently v1.9.0 precompilation and loading cause an enormous amount of allocation - v1.10 seems ok
201+
VERSION != v"1.9.0" && _precompile()
201202

202203
function __init__()
203204
if Threads.nthreads() == 1

0 commit comments

Comments
 (0)