Ian Atol

Results 37 comments of Ian Atol

Not sure if this is really necessary because we ended up providing deprecated access to the same field in https://github.com/JuliaLang/julia/pull/45378, but I guess it uses the new accessors when available.

I think the poor broadcasting performance likely has to do with some missed chance to perform our memory optimization in the broadcast logic somewhere (i.e., we think it is unsafe...

Also, minor nit, but `ImmutableArray` will copy by itself if we can't optimize, so don't think `copy` is necessary here: ```julia make_immutable(x::AbstractArray) = ImmutableArray(copy(x)) ```

In addition, I'd like to make `_lift_svec_ref` more understandable and general, but that will have to wait for now

We got this error just from running `rr replay .` in the trace directory

Sorry, not before GDB starts but after the first `c`. This is on rr 5.3.0. Here's more of the rr crash trace: ``` GNU gdb (Ubuntu 8.1-0ubuntu3.2) 8.1.0.20180409-git Copyright (C)...

Sure thing, thanks for looking into this!