You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Feb 14th 2023, Microsoft released the .NET 7.0.3 (SDK 7.0.200). This is causing unit tests in our CI pipeline to fail.
After installing SDK 7.0.200, I can reproduce the failures on Windows 10 using the command line dotnet test. However, I am unable to reproduce the test failures in VS2022 (v17.4.5).
The text was updated successfully, but these errors were encountered:
Looks like the SDK changed the IL emitted for C# extension methods that use generics. The newly added boxing instructions then caused issues when ILGPU parsed the MSIL.
I have raised #933 to fix this issue by removing the boxing.
On Feb 14th 2023, Microsoft released the .NET 7.0.3 (SDK 7.0.200). This is causing unit tests in our CI pipeline to fail.
After installing SDK 7.0.200, I can reproduce the failures on Windows 10 using the command line
dotnet test
. However, I am unable to reproduce the test failures in VS2022 (v17.4.5).The text was updated successfully, but these errors were encountered: