JuliaSIMD / JuliaSIMD/LoopVectorization.jl
Handing of `end` in indexing
未关闭
- 主要语言
- Julia
- 星标
- 789
- 派生
- 73
- PR 合并指标
- 30 天内没有已合并 PR
描述
From https://github.com/mcabbott/Tullio.jl/issues/97, this gives an error:
```julia
function col!(out, A)
@avx for i in 1:3
out[i, end] = 10 * A[i]
out[i, begin] = 100 * A[i]
end
out
end
col!(rand(3,3), collect(1:3)) # UndefVarError: end not defined
```
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。