-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
JIT: Assertion failed 'ins != INS_invalid' during 'Generate code' #106478
Comments
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch |
I'll take a look. |
Seems like it requires AVX512 ... also if it requires |
Only required config setting is |
we are trying to generate |
Just upstream we have
in source this is
and it seems like the |
One possible fix is to pick up the @tannergooding is this too simplistic? |
There's a bit of a tradeoff here in how it impacts codegen and other downstream optimizations (like whether an embedded maski or embedded broadcast can be used). I think for .NET 9 using the base type from |
If we merge two simd for bitwise ops (eg creating an AndNot), make sure to use the simd base type of the parent (And) node when specializing the operator. Fixes dotnet#106478.
If we merge two simd for bitwise ops (eg creating an AndNot), make sure to use the simd base type of the parent (And) node when specializing the operator. Fixes dotnet#106478.
If we merge two simd for bitwise ops (eg creating an AndNot), make sure to use the simd base type of the parent (And) node when specializing the operator. Fixes #106478.
…106520) If we merge two simd for bitwise ops (eg creating an AndNot), make sure to use the simd base type of the parent (And) node when specializing the operator. Fixes #106478. Co-authored-by: Andy Ayers <[email protected]>
On Windows x64:
cc @dotnet/jit-contrib
The text was updated successfully, but these errors were encountered: