Andreas Noack

Results 96 issues of Andreas Noack

It might not be supported to `macroexpand` and `eval`ing a macro call with `@enter` but it probably shouldn't cause a segfault either. On laster commit of this package I get...

UPDATE: This is fixed by using `Libdl.RTLD_GLOBAL` in `dlopen` so the remaining issue probably to improve the error message. Unfortunately, it requires a few steps to reproduce the error which...

The models in this package fall in two groups: one nice one with the exponential family and canonical links and the more complicated one where the observed information depends on...

performance

This used to work fine but now I'm consistently getting ```julia [ Info: Submitting data to Codecov... ERROR: IOError(Base.IOError("connect: network is unreachable (ENETUNREACH)", -101) during request(https://storage.g oogleapis.com/codecov/v4/raw/2021-09-21/9472A2BD638E4D8275D695CF9E94797A/01a215e833c3fe848a6a6cd9a05ac305585ab59c/4 915d1c2-f4db-4d5c-b8af-929cbc4d0da4.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=GOOG1EKKHVKCKHW7KBCGM7IHR 55T63V2PAVJWLVFNITJHDU5G6R5IRN3LMWJA%2F20210921%2FUS%2Fs3%2Faws4_request&X-Amz-Date=20210921T141408Z&X-Amz-Expires= 10&X-Amz-SignedHeaders=host&X-Amz-Signature=d2c0ec95c2ddf4a4d23218d80f2567ccf9a36b0d8cb8eb7c4de1c99ba52701f3))...

bug

It's possible for https://github.com/JuliaNLSolvers/Optim.jl/blob/d5cb5dae049dcb7bcff94d691a099b3650d5d9d8/src/multivariate/solvers/first_order/bfgs.jl#L156-L160 to result in non-finite values. Primarily because `dx_dg' * dx_dg` overflows when `dx_dg` small. Some of these cases could be avoided by changing it to something...

These should be avoided in e.g. https://github.com/JuliaNLSolvers/Optim.jl/blob/adc5b277b3f915c25233b45f8f2dd61006815e63/src/types.jl#L134-L143 according the the `show` docs. Only the three-argument show methods should have newlines.

The SIMD tests are currently failing on Travis. At least for a period, they passed locally so, in any case, we need the tests to be more reliable on CI....

The orange bars right below the tall (and widest) towers in the profile image seem to be [this line](https://github.com/jeff-regier/Celeste.jl/blob/master/src/deterministic_vi_image_psf/sensitive_float_fft.jl#L48) and [this line](https://github.com/jeff-regier/Celeste.jl/blob/master/src/deterministic_vi_image_psf/sensitive_float_fft.jl#L54) which are loading floating point values into a...

This can cause unnecessary abortion. E.g. ```julia julia> f = (u,p,t) -> -p.a*u #3 (generic function with 1 method) julia> prob = ODEProblem(f, [10.0], (0.0, 1.0), (a=-100.0,)) ODEProblem with uType...

In `_loopfooter!`, specifically https://github.com/SciML/OrdinaryDiffEq.jl/blob/da5d57ca7a59757768a1206f272f88ae72624d48/src/integrators/integrator_utils.jl#L195-L204 `integrator.t` is snapped to the `tstop` if it's close enough. However, after this `t` adjustment then https://github.com/SciML/OrdinaryDiffEq.jl/blob/da5d57ca7a59757768a1206f272f88ae72624d48/src/integrators/integrator_utils.jl#L206 is called and if there is a continuous callback...