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

[BUG] SIMD Reduce functions don't work at compile time #4219

Open
martinvuyk opened this issue Mar 30, 2025 · 0 comments
Open

[BUG] SIMD Reduce functions don't work at compile time #4219

martinvuyk opened this issue Mar 30, 2025 · 0 comments
Assignees
Labels
bug Something isn't working max-repo mojo Issues that are related to mojo

Comments

@martinvuyk
Copy link
Contributor

martinvuyk commented Mar 30, 2025

Bug description

Actual behavior

fn main():
    alias a = SIMD[DType.uint8, 2](0, 1).reduce_and()
    alias b = SIMD[DType.uint8, 2](0, 1).reduce_or()
    alias c = SIMD[DType.uint8, 2](0, 1).reduce_min()
    alias d = SIMD[DType.uint8, 2](0, 1).reduce_max()
    alias e = SIMD[DType.uint8, 2](0, 1).reduce_max()
    print(a, b, c, d, e)

output:

note: failed to interpret operation pop.call_llvm_intrinsic{fastmathFlags: #pop<fmf none>, hasSideEffects: false, intrin: "llvm.vector.reduce.and" : !kgen.string}(#kgen.pack<<0, 1>> : !kgen.pack<[[typevalue<#kgen.typeref<@"stdlib::builtin::simd::SIMD,dtype=ui8,size=2">>, simd<2, ui8>]]>)

Steps to reproduce

...

System information

Version mojo 25.3.0.dev2025032905


Part of #4142

CC: @lattner

@martinvuyk martinvuyk added bug Something isn't working max-repo mojo Issues that are related to mojo labels Mar 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working max-repo mojo Issues that are related to mojo
Projects
None yet
Development

No branches or pull requests

2 participants