Uh oh!
There was an error while loading. Please reload this page.
[mono] Fix Vector<T>.IsSupported intrinsic - #90023
Conversation
ivanpovazan
commented
Aug 4, 2023
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
This appears to fail for MONO_TYPE_CHAR? which is causing problems in the tests, is there a reason we aren't allowing MONO_TYPE_CHAR in MONO_TYPE_IS_VECTOR_PRIMITIVE? |
vargaz
commented
Aug 4, 2023
Vector128.IsSupported returns false for char. |
lewing
commented
Aug 4, 2023
Ah yeah, here is one of the wasm failures i |
eaf88e5 to
1cc0b3eComparelewing
commented
Aug 4, 2023
I fixed the throwhelpers to share the same logic. |
1cc0b3e to
428f79eComparematouskozak
commented
Aug 7, 2023
LGTM. I see that the runtime-extra-platforms test that was failing before |
Uh oh!
There was an error while loading. Please reload this page.
ivanpovazan
commented
Aug 7, 2023
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
ivanpovazan
commented
Aug 8, 2023
/azp run runtime |
|
Azure Pipelines successfully started running 1 pipeline(s). |
premun
commented
Aug 9, 2023
Just an FYI, we've seen a spike of failed jobs on OSX 13 AppleTV queue originating from this PR: WorkItems
| where QueueName == "osx.13.amd64.appletv.open"and Finished > now() - 3dand Finished < now() - 1d
| where ExitCode != 0
| joinkind=inner Jobs on JobId
| summarizecount() by SourceThis happened about 2 days ago and was enough to trigger an alert for our infra. |
ivanpovazan
commented
Aug 11, 2023
@SamMonoRT If I don't manage to resolve the failures introduced by this PR, we can disable the failing Vector128 tests on |
Uh oh!
There was an error while loading. Please reload this page.
ivanpovazan
commented
Aug 12, 2023
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
ivanpovazan
commented
Aug 13, 2023
I have opened several tracking issues for failures on This PR now seems to be a proper fix - originally reported regressions on @vargaz@lewing@SamMonoRT do you want to take another look before I merge this? |
This PR fixes a regression introduced in: #86546 where
Vector<T>.IsSupportedtests started failing onwin-x64platform.The
Vector<T>.IsSupportedis now intrinsified properly when the type parameter T is a primitive type on all supportedplatforms.
Fixes#88983