jessebett
jessebett
Here is the relevant file in Zygote `src`: https://github.com/FluxML/Zygote.jl/blob/a1e3f9ffbf49fd710ab2f117e3ee4138a6677aa7/src/lib/array.jl#L539-L585
Yes! Early on in the project I was using TaylorSeries.jl for proof of concept. We were having a few issues with it when we decided to use JAX (https://github.com/google/jax/issues/520#). I...
I don’t know enough about defining Iterators to solve this 😞 I believe that the bug is ``` function Base.iterate(p::IntegerPartitions, xs = Int[]) length(xs) == p.n && return xs =...
@mschauer sorry this was lost in my github notifications. To answer your question, I don't know how to make it non-breaking. Not sure why `integer_partitions` was ever implemented in the...
Agreed.
Just found Watson and trying out instead of timewarrior. This is a big pain point for me right now. Adding or editing past items is quite annoying with required `YYYY-MM-DD...
Further frustration, the student roster is paginated. Since I am now having to correct many mistaken student links I cannot even do it simply, by `ctrl-f` for their ID. I...
As expected, GPU is a completely different story. `FastConv` can be extended which I've done in [this PR to FastConv.jl](https://github.com/aamini/FastConv.jl/pull/8). However, FastConv requires scalar `getindex` operations, which slow things down...
@staticfloat I was gonna try comparing with multiple channels and batches but it looks like you're right and `FastConv` doesn't have this (or possibly I'm using it incorrectly): ```julia using...
@staticfloat nice!