You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following MWE shows that @report_call reports a BoundsError when indexing a Tensor{2,2}), which is the suggested usage in the doc of Tensors.jl.
using Tensors
using JET
a =rand(Tensor{2,2})
@report_call a[1,:]
the error message is as follows: BoundsError: attempt to access NTuple{4, Float64} at index [5]: Base.getfield(t::NTuple{4, Float64}, i::Int64, $(Expr(:boundscheck)))
Version info
julia v1.11.1
JET v0.9.12
Tensors v1.16.1
The text was updated successfully, but these errors were encountered:
The following MWE shows that
@report_call
reports aBoundsError
when indexing aTensor{2,2})
, which is the suggested usage in the doc ofTensors.jl
.the error message is as follows:
BoundsError: attempt to access NTuple{4, Float64} at index [5]: Base.getfield(t::NTuple{4, Float64}, i::Int64, $(Expr(:boundscheck)))
Version info
julia v1.11.1
JET v0.9.12
Tensors v1.16.1
The text was updated successfully, but these errors were encountered: