JuliaSIMD / JuliaSIMD/LoopVectorization.jl
Broadcast bug
Open
- Dominant language
- Julia
- Stars
- 789
- Forks
- 73
- PR merge metrics
- No merged PRs in 30d
Description
```julia
julia> xs = [1.9, 1.0]
2-element Array{Float64,1}:
1.0
1.0
julia> max_ = maximum(xs, dims=1)
1-element Array{Float64,1}:
1.0
julia> exp_ = @avx exp.(xs .- max_)
2-element Array{Float64,1}:
1.0
2.7182818284590455
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.