Keno Fischer
Keno Fischer
Similar in spirit to #46157. We'd like to collect crashdumps when julia crashes on CI, but currently we just cleanly exit the pocess in this case. By continuing exception handling...
The below test case crashes in GR. Sometimes in `longjmp`, sometimes in process_glyphs. ## Details Note: This may not be a correct use of the API, but in any case,...
This adds a bunch of definitions to make nested AD work and adds tests for second-order AD. Unfortunately by the time we get to third-order AD, the types get so...
The circuit examples in `examples/` are static and do not exhibit time-dependent solutions. Ideally, future improvements to structural simplification would eliminate all equations in these models. Since they're used to...
At the moment, after tearing, we symbolically substitute solved equations back into the original system and then codegen that. This makes little sense. Substitution is essentially free at codegen time...
I do not have dhcp set up, so I entered the ipxe menu to manually set an ip. This allowed it to successfully chain boot.netboot.xyz. However, the ip I had...
Some libraries a user might want to load have RTTI enabled and some don't. Figure out what do to about that.
``` ┌ Warning: /home/keno/julia-rebase/base/base/compiler/ssair/show.jl is not a file, omitting from revision tracking └ @ Revise ~/.julia/packages/Revise/AMRie/src/parsing.jl:24 ``` Note the extra `base` in the path that it's complaining about.
Say you accidentally write something like this in a package: ``` foo() = iterate(...) iterate(a::Foo) = ... ``` The second definition is wrong. What was intended was to extend `Base.iterate`....