Lilith Orion Hafner

Results 153 comments of Lilith Orion Hafner

Even worse, it doesn't always error: ```Julia julia> value = 1 1 julia> name = 2 2 julia> struct Foo value::Int, name::Int end ``` I imagine that if a struct...

I think these are some examples of what @vtjnash is talking about. This should work: ```julia basetype(Vector) == Array ``` And perhaps some of these should also work: ```julia basetype(Union{Vector{Int64},...

We could either throw a different message in `SamplerRangeNDL` (e.g. "collection must be non-empty", a less specific but still true message) or add another check earlier in the pipeline.

I still get an assertion error on master ```julia julia> versioninfo() Julia Version 1.9.0-DEV.1053 Commit 9e22e567f29 (2022-07-26 14:21 UTC) Platform Info: OS: macOS (x86_64-apple-darwin21.5.0) CPU: 4 × Intel(R) Core(TM) i5-8210Y...

If it weren't for 24990, I would support this proposal, but if https://github.com/JuliaLang/julia/pull/24990 merges with the "one function call and zero or more operator calls" semantic, then I see little...

**Edit: This comment is probably not worth your time to read** I'm on a mac (11.4) and for this comment I'm using the standard Julia REPL from 1.6.1 in a...

I've reproduced this issue. Here is a MWE: ```julia julia> [zeros(10) for _ in 1:10^7]; GC.gc() ``` Or ```julia julia> f(a,b) = [zeros(a) for _ in 1:b] f (generic function...

I think the problem happens when Julia needs many pointers at the same time: ```julia function re_use(n) x = Vector{Vector{Int}}(undef, n) el = Int[] for i in 1:n x[i] =...

What I have been able to reproduce is not a leak _per se_, because repeated actions do not increase memory usage, but it is nonetheless large memory usage where I...

Yes! It does seem like a memory release to system problem. > GC.gc(true); GC.gc() Does not fix it. @JeffBezanson is it possible to call `malloc_trim` manually without rebuilding Julia? I...