DLPack.jl icon indicating copy to clipboard operation
DLPack.jl copied to clipboard

Julia interface for dlpack

Results 4 DLPack.jl issues
Sort by recently updated
recently updated
newest added

As described in #29 An array is not `col_major` doesn't means it's `row_major`, it could be non-contiguous, so throw an error here if the contiguous check didn't pass. (maybe we...

A small example: ``` julia> v = rand(3, 2) 3×2 Matrix{Float64}: 0.071368 0.486031 0.00750569 0.53865 0.416978 0.316323 julia> sub_v = @views v[2:3,:] # which is a StridedArray 2×2 view(::Matrix{Float64}, 2:3,...