Jishnu Bhattacharya

Results 177 comments of Jishnu Bhattacharya

I see. In that case, I'll close this. If I see some real-world difference in the future, I'll open a separate issue.

Related: https://github.com/JuliaLang/julia/issues/43821

Looks like `init` as a keyword argument is not supported. ```julia julia> mapreduce(identity, +, 1:10, init = 100) 155 julia> ThreadsX.mapreduce(identity, +, 1:10, init = 100) 1055 ``` `init` is...

As a temporary fix perhaps `OffsetArrays` may limit its piracy to ranges defined in `Base`. That should fix this, and it's unlikely that packages specifically depend on this behavior for...

Could you elaborate on how to use a `PseudoBlockArray` in this context? I am trying to directly replace `mortar` with `PseudoBlockArray` in my code, which doesn't seem to work: ```julia...

``` julia> 2^21 2097152 ``` This indicates that the approximation didn't converge (not entirely sure why). I'll try to look into this.

```julia julia> integrand = Fun(θ -> sin(θ)*v[1](θ)*v[2]'(θ) ); julia> domain(integrand) -1.0..1.0 (Chebyshev) ``` The domain isn't correct in this case

Closing, as this is fixed now on Julia v1.8

The visual similarity between `\sum` and `\Sigma` would make code using both hard to read. Maybe this shouldn't be exported? Users may import this if their projects aren't likely to...

Appears to have been fixed ```julia julia> Conversion(Chebyshev(), Ultraspherical(1)) ConcreteConversion : Chebyshev() → Ultraspherical(1) 1.0 0.0 -0.5 ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ ⋅ 0.5 0.0 -0.5 ⋅...