You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ref: JuliaLang/julia#53570 (comment)
Precompiled GLTF size on Julia v1.11.0-beta1 is a whopping 211 MB.
Removing @inline statements from src/structs.jl the precompiled size drops to 13 MB
On Julia v1.10.3, precompiled size is 43 MB
using GLTF
@time load(joinpath(pkgdir(GLTF), "assets", "DamagedHelmet.gltf"));
gives
5.356109 seconds (3.35 M allocations: 166.812 MiB, 0.80% gc time, 99.99% compilation time)
and without @inline in src/structs.jl the precompiled size is 10 MB and
0.384157 seconds (677.40 k allocations: 49.200 MiB, 8.62% gc time, 99.85% compilation time)
On 1.11.0-beta1, TTFX seems to be fast in both cases.
The text was updated successfully, but these errors were encountered:
Ref: JuliaLang/julia#53570 (comment)
Precompiled GLTF size on Julia v1.11.0-beta1 is a whopping 211 MB.
Removing
@inline
statements fromsrc/structs.jl
the precompiled size drops to 13 MBOn Julia v1.10.3, precompiled size is 43 MB
gives
and without
@inline
insrc/structs.jl
the precompiled size is 10 MB andOn 1.11.0-beta1, TTFX seems to be fast in both cases.
The text was updated successfully, but these errors were encountered: