Mason Protter

Results 233 comments of Mason Protter

@AliceRoselia Can you provide a minimal working example? i.e. definitions for `lazyaddFilter`, `sieve_primes`, `wheel_nums`, etc? From what you've given it's very hard to track down what could be at play...

Seems like a bug, probably a missing method somewhere, I'll try to look into it soon.

Crap, this is caused by https://github.com/JuliaFolds/Transducers.jl/pull/553 I think I'll have to figure out a good way to set up this `halve`-ing proceedure instead of using Iterators.partition`. ___________ Note that this...

Yeah I find that quite strange. I couldn't reproduce the bug by just calling `rmul!(::Vector{Complex}, ::Bool)`, so I think that what’s happening is that KrylovKit is generating undefined junk somewhere...

Yeah, so if I make an `undef` vector of `Complex` then I get the error ```julia julia> v = Vector{Complex}(undef, 2) 2-element Vector{Complex}: #undef #undef julia> rmul!(v, false) ERROR: UndefRefError:...

Yes, it seems to go away with an explicit call in the loop. If I interrupt the loop though and then do a `GC.gc()` outside of the loop, the previously...

Basically, Enzyme is treating `dx` as a cartesian vector where the `i`th field of `dx` will be given by $\mathrm{d}x_{i} = {\partial f / \partial x_{i}}$, so it's useful to...

I'll add those to the checklist.

I think "Support basic globals without Julia's runtime" technically already works with #58. I got the globals working before I even figured out how to link to the runtime. The...