We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
julia> using SIMD julia> a=rand(25,25); julia> b=reinterpret(UInt8,a); julia> c=vec(b); julia> vload(Vec{32,UInt8}, c, 1) ERROR: MethodError: no method matching vload(::Type{Vec{32, UInt8}}, ::Base.ReshapedArray{UInt8, 1, Base.ReinterpretArray{UInt8, 2, Float64, Matrix{Float64}, false}, Tuple{}}, ::Int64) Closest candidates are: vload(::Type{Vec{N, T}}, ::Union{DenseVector{T}, Base.ReinterpretArray{T, 1, T2, A} where {T2, A<:Union{DenseVector{T2}, SubArray{T2, 1, P, I, true} where {P, I<:Union{Tuple{Vararg{Real}}, Tuple{AbstractUnitRange, Vararg{Any}}}}}}, SubArray{T, 1, P, I, true} where {P, I<:Union{Tuple{Vararg{Real}}, Tuple{AbstractUnitRange, Vararg{Any}}}}}, ::Integer, ::Any, ::Val{Aligned}, ::Val{Nontemporal}) where {N, T, Aligned, Nontemporal} @ SIMD ~/.julia/packages/SIMD/uoGjY/src/arrayops.jl:56 vload(::Type{Vec{N, T}}, ::Union{DenseVector{T}, Base.ReinterpretArray{T, 1, T2, A} where {T2, A<:Union{DenseVector{T2}, SubArray{T2, 1, P, I, true} where {P, I<:Union{Tuple{Vararg{Real}}, Tuple{AbstractUnitRange, Vararg{Any}}}}}}, SubArray{T, 1, P, I, true} where {P, I<:Union{Tuple{Vararg{Real}}, Tuple{AbstractUnitRange, Vararg{Any}}}}}, ::Integer, ::Any, ::Val{Aligned}) where {N, T, Aligned} @ SIMD ~/.julia/packages/SIMD/uoGjY/src/arrayops.jl:56 vload(::Type{Vec{N, T}}, ::Union{DenseVector{T}, Base.ReinterpretArray{T, 1, T2, A} where {T2, A<:Union{DenseVector{T2}, SubArray{T2, 1, P, I, true} where {P, I<:Union{Tuple{Vararg{Real}}, Tuple{AbstractUnitRange, Vararg{Any}}}}}}, SubArray{T, 1, P, I, true} where {P, I<:Union{Tuple{Vararg{Real}}, Tuple{AbstractUnitRange, Vararg{Any}}}}}, ::Integer, ::Any) where {N, T} @ SIMD ~/.julia/packages/SIMD/uoGjY/src/arrayops.jl:56 ... julia> vload(Vec{32,UInt8}, pointer(c)) <32 x UInt8>[...]
Possibly similar to JuliaLang/julia#51838
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Possibly similar to JuliaLang/julia#51838
The text was updated successfully, but these errors were encountered: