Skip to content
New issue

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

reduced_max not defined #111

Closed
AStupidBear opened this issue May 10, 2020 · 0 comments
Closed

reduced_max not defined #111

AStupidBear opened this issue May 10, 2020 · 0 comments

Comments

@AStupidBear
Copy link
Contributor

I want to use LoopVectorization to vectorize maximum

using LoopVectorization
function maximum_avx(x)
    s = typemin(eltype(x))
    @avx for i in eachindex(x)
        s = max(s, x[i])
    end
    s
end
maximum_avx(x)
ERROR: UndefVarError: reduced_max not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant