Kristoffer Carlsson

Results 1623 comments of Kristoffer Carlsson

> Sorry, I still don't understand. I'm not aware of any plans to remove sorting from the sysimage. In general, the expectation is that unless you depend on a stdlib,...

https://github.com/JuliaLang/julia/commit/fa3981bf83a016e2fb48f51204ccbf9d8d66397c#commitcomment-83556911

That doesn't seem to change anything (running with `--trace-compile=stderr`): ```julia julia> precompile(Tuple{typeof(Serialization.deserialize), Base.GenericIOBuffer{Array{UInt8, 1}}}) precompile(Tuple{typeof(Serialization.deserialize), Base.GenericIOBuffer{Array{UInt8, 1}}}) true julia> precompile(Tuple{typeof(Serialization.deserialize), Serialization.Serializer{Base.GenericIOBuffer{Array{UInt8, 1}}}, DataType}) false julia> @time deserialize(io); precompile(Tuple{typeof(Serialization.deserialize), Serialization.Serializer{Base.GenericIOBuffer{Array{UInt8, 1}}},...

> It is honestly kind of silly to use PkgEval to test this, since we could just test that everything parses the same between the 2 versions (which would allow...

Is the 32bit linux failure known https://buildkite.com/julialang/julia-master/builds/15977#01835893-4af0-4ba5-8147-1cca33b597a1?

I think this is just how macros work, they get expanded before any code is executed. So if code in the block defines the macros then expanding the macro itself...

Would be good if someone addressed https://github.com/JuliaLang/julia/pull/46806#issuecomment-1262795256 to not leave it hanging.

👍 . Was trying to use this today and the docs are quite underwhelming in describing how it should be used.

> The package manager has improved greatly but it doesn't actually solve the simplest case here, which is that a new user will fire up the REPL and try to...

Could you spell out why this would this help with memory during the tests?