Sheehan Olver

Results 312 issues of Sheehan Olver

Readme mentions `CLArray` which doesn't really exist anymore....

My code broke under the new NumericExtensions, looks like a missing implementation of view WARNING: unsafe_view is deprecated, use view instead. in unsafe_view at deprecated.jl:8 ERROR: no method view(Array{Float64,1}) in...

@staticfloat. This came up via DifferentialEquations.jl update I believe. ```julia ==> Renamed Formulae php56 -> [email protected] php70 -> [email protected] php71 -> [email protected] ==> Deleted Formulae arm Uninstalling atk... (209 files,...

Does GLVisualize integrate well with any of the GPU programming packages? For example, https://github.com/JuliaGPU/CLBLAS.jl or https://github.com/JuliaGPU/CUBLAS.jl It would be nice to do the computation and plotting all on the GPU...

It's better to create a recipe than a function that calls plots directly for a number of reasons, one of which that you don't need to load Plots to use...

I would expect `similar` to work for creating empty sparse vectors: ```julia julia> similar(SparseVector{Float64,Int}, 5) ERROR: MethodError: Cannot `convert` an object of type Tuple{Int64} to an object of type SparseVector{Float64,Int64}...

Ideally we'd have: ```julia julia> B = BlockBandedMatrix{Float64}(undef, Fill(2,10), Fill(3, 10), (1, 2)); julia> MemoryLayout(view(B, getindex.(Block.(1:10), 1), getindex.(Block.(1:1), 2))) isa BandedColumns{StridedLayout} ``` To do this, we have several things to...

```julia julia> BlockBandedMatrix{Float64}(undef, (1:3,1:3),(1,1)) |> Array ``` Cf. https://github.com/JuliaLang/julia/issues/32213#issuecomment-499095683