Jishnu Bhattacharya

Results 185 issues of Jishnu Bhattacharya

Change `UnitRange` to `UnitRange{

Currently the function signature for `fill` is https://github.com/JuliaArrays/OffsetArrays.jl/blob/7294f3dcab6e6117b15eea3b98ce2c2175d08194/src/OffsetArrays.jl#L212-L213 However the function clearly only works with integral values, as the `OffsetArray` constructor only accepts `Int`s. Something like this will fail: ```julia...

I am encountering this error if jobs time out ``` julia> addprocs_slurm(100); srun: job 1218546 queued and waiting for resources Error launching Slurm job: ERROR: UndefVarError: warn not defined Stacktrace:...

help wanted

This PR implements `zero(::DArray)` using `dzeros`

```julia julia> d = dzeros((3,3)) 3×3 DArray{Float64,2,Array{Float64,2}}: 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 julia> d2 = dzeros((3,3,1)) 3×3×1 DArray{Float64,3,Array{Float64,3}}: [:, :, 1] = 0.0 0.0 0.0 0.0...

I am casting a video from my laptop running Ubuntu using rcast.py and it works as expected. From the remote control panel I can use the play/pause, stop, volume buttons...

bug

Currently loading `FastTransforms` for the first time in a new session takes around 9s on my laptop. ```julia julia> @time using FastTransforms 8.874037 seconds (12.01 M allocations: 893.960 MiB, 3.89%...

```julia julia> Test.detect_ambiguities(ChainRulesCore, Base) 16-element Vector{Tuple{Method, Method}}: (*(s, comp::Tangent) in ChainRulesCore at /home/jishnu/.julia/packages/ChainRulesCore/Voykb/src/differential_arithmetic.jl:168, *(comp::Tangent, s) in ChainRulesCore at /home/jishnu/.julia/packages/ChainRulesCore/Voykb/src/differential_arithmetic.jl:169) (==(a, b::AbstractThunk) in ChainRulesCore at /home/jishnu/.julia/packages/ChainRulesCore/Voykb/src/differentials/thunks.jl:27, ==(::Missing, ::Any) in Base at...

good first issue

Trying to add `TensorKit` on julia nightly, I encounter the following error: ```julia ERROR: The following 1 direct dependency failed to precompile: TensorKit [07d1fe3e-3e46-537d-9eac-e9e13d0d4cec] Failed to precompile TensorKit [07d1fe3e-3e46-537d-9eac-e9e13d0d4cec] to...

`generate_coverage` writes out files in both the package `src` directory as well as the julia installation directory (in `/share/julia/base`). Running `clean_coverage` removes the `*.cov` files from the package, but not...

bug
upstream