Kristoffer Carlsson
Kristoffer Carlsson
The `@path` command needs to *execute* during precompilation for RelocatableFolders to work. This was changed in https://github.com/JuliaPlots/Plots.jl/commit/a1ad4c9aeab18e47eff0859689aacdc3beaae9da#diff-4bd462497f5ac8631d218b72f21cf9d5f383e7a1500f0fee0b8cb776b9a4dac4.
This creates basically a new julia "distribution" with a custom set of packages in it. Right now: - packages get added to the sysimage - packages are treated as stdlibs...
For example:https://s3.amazonaws.com/julialang-reports/nanosoldier/pkgeval/by_hash/c37ee51_vs_bd445fa/JOLI.primary.log ``` ErrorException("IR verification failed.\n Code location: /home/pkgeval/.julia/packages/JOLI/2dSnd/test/test_rrules.jl:8\n Method instance: MethodInstance for ZygoteRules._pullback(::Zygote.Context{false}, ::var\"#497#498\", ::Vector{Float32})") error at ./error.jl:54 unknown function (ip: 0x79a739f12f9a) at (unknown file) _jl_invoke at /source/src/gf.c:3696 [inlined]...
As an example: ``` julia +nightly --project -ie 'using Revise; using REPL; using Pkg' ``` now add e.g. a `x=1` to `src/Resolve/graphtype.jl` and press enter: ``` ┌ Error: Failed to...
Ref https://github.com/Ferrite-FEM/Ferrite.jl/issues/1229
I dusted off my four-year-old https://github.com/KristofferC/HyperHessians.jl, and it seems to still be quite good. Benchmarks run on 1.10 due to https://github.com/JuliaLang/julia/issues/60241 and https://github.com/JuliaLang/julia/issues/60243. The package has had very little real...
This is not trivial to do, what I have done earlier is: - Extract the real part from the dual numbers on the element level AD. - Call the inner...
@fredrikekre had a nice presentation today on JuliaCon on how to choose different AD frameworks using DifferentiationInterface.jl. I think that would be worthwhile to add to the how-to section in...