-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[wasm] Enable MT in S.Linq.Parallel #96215
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
Conversation
Also fix the csproj condition to detect FeatureWasmThreads
|
Tagging subscribers to this area: @dotnet/area-system-linq-parallel Issue DetailsAlso fix the csproj condition to set the
|
|
This depends on another MT areas to complete, like S.T.Monitor |
|
With the missing pieces in place, we pass the build. During the test run the previously failing test passes, the next one dead locks. More to fix. |
|
Tagging subscribers to 'arch-wasm': @lewing Issue DetailsAlso fix the csproj condition to set the
|
This reverts commit aedafd3.
|
Remaining work in this area, to be added in following PRs
|
Add System.Threading.WebAssembly.Threading ref assembly to enable more parts of threading API on wasm Fix System.Linq.Parallel assembly to work as MT on wasm Increase the initial thread pool size to 7 to let the System.Linq.Parallel tests pass Fixes dotnet#91661 * [wasm] Enable more MT PLinq areas Also fix the csproj condition to detect FeatureWasmThreads * Add missing pieces * Add System.Threading.WebAssembly.Threading.csproj * Fix System.Threading to work with the new wasm MT ref assembly * Enable the failing test * Use the new ref assembly in the System.Linq.Parallel * Remove now obsolete API check supressions * Increase the thread pool size to make the plinq tests pass * Add API check suppressions for System.Threading * Always use the API suppressions for System.Threading * Remove unwanted attributes from the implementation * Add suppressions to corelib * Revert "Remove unwanted attributes from the implementation" This reverts commit aedafd3. * Build fixes * Remove unnecessary suppression * Remove unwanted source file from the list
Add System.Threading.WebAssembly.Threading ref assembly to enable more parts of threading API on wasm
Fix System.Linq.Parallel assembly to work as MT on wasm
Increase the initial thread pool size to 7 to let the System.Linq.Parallel tests pass
Fixes #91661