Oliver Schulz
Oliver Schulz
I just tried the current ROOT Docker Container with Julia v1.3 (last version currently supported by CXX.jl). This is as far as I got so far: [...] * See below...
> You should either use a much newer julia version (1.6+) or replace julia's libstdc++ Yes, that's the rub, can't use Julia v1.6 with Cxx currently. :-) But you're right,...
According to @Axel-Naumann, the LLVM conflict problem should indeed not occur anymore with ROOT >= v6.24.02. Thanks, Axel!
Quick update: I just updated ROOT.jl (master branch) to work with Julia v1.3. I suggest we don't re-register ROOT.jl yet, but wait until Cxx.jl is compatible with current Julia versions...
> Fair warning: I'm not aware of any plans to make that happen. However, someone could take up the job. I think there is some activity on that again: JuliaInterop/Cxx.jl#490
@jagot , I'll pick up on this PR, if that's Ok with you?
It would be neat to support (e.g.) `A \ b` as well, but that would require depending on IterativeSolvers.jl (would increase the load time of LinearMaps from about 110 ms...
> It would be neat to support (e.g.) A \ b as well [...] LinearMap already provides information on whether it's pos-def and so on I asked @ChrisRackauckas for advice,...
Thanks for the link @JeffFessler , I hadn't been aware of LinearMapsAA and I had overlooked #38. I do get the arguments in #38 regarding getindex - but an ineffecient...
There's also the issue that code that want's to support both `AbstractMatrix` and `LinearMap` currently has to depend on LinearMaps.jl, which has a load time of about 100 ms. Not...