-
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
Disable vector ctors intrinsics on wasm #98114
Conversation
This will fail on amd64 as well, only arm64 enables Vector3 rn. I'd suggest the check from |
This code is not reachable on amd64 runtime/src/mono/mono/mini/simd-intrinsics.c Lines 2697 to 2700 in 0fafa50
|
/azp run runtime-wasm |
Azure Pipelines successfully started running 1 pipeline(s). |
This is still happening on the fullaot llvm x64 lanes: |
We do have llvm support for vector2 and vector3. It could be a matter of enabling it as simd on llvm amd64. Will look into that. |
Should fix WASM regression: https://dev.azure.com/dnceng-public/public/_build/results?buildId=556904&view=logs&jobId=b455efc5-4fe2-50ab-5106-412ad73c23a0&j=b455efc5-4fe2-50ab-5106-412ad73c23a0&t=607d8ddd-2371-58ff-95a3-14f9242e8c35
Caused by: #98037
Vector2 and Vector3 are not marked as SIMD on WASM.