Skip to content

Commit cdd71fe

Browse files
radekdoulikradical
andauthored
[wasm] Enable SIMD (#80797)
* [wasm] Enable SIMD * Let old V8 use simd Co-authored-by: Ankit Jain <[email protected]> * [wasm] ManagedToNativeGenerator: Skip unmanaged dlls .. instead crashing with an exception like: ``` src/mono/wasm/build/WasmApp.Native.targets(296,5): error MSB4018: (NETCORE_ENGINEERING_TELEMETRY=Build) The "ManagedToNativeGenerator" task failed unexpectedly. System.BadImageFormatException: This PE image is not a managed executable. at System.Reflection.MetadataLoadContext.LoadFromStreamCore(Stream peStream) at System.Reflection.MetadataLoadContext.LoadFromAssemblyPath(String assemblyPath) at PInvokeTableGenerator.Generate(String[] pinvokeModules, String[] assemblies, String outputPath) in /_/src/tasks/WasmAppBuilder/PInvokeTableGenerator.cs:line 42 at ManagedToNativeGenerator.ExecuteInternal() in /_/src/tasks/WasmAppBuilder/ManagedToNativeGenerator.cs:line 68 at ManagedToNativeGenerator.Execute() in /_/src/tasks/WasmAppBuilder/ManagedToNativeGenerator.cs:line 53 at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute() at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask) ``` The wasm targets currently are not able to differentiate the managed assemblies from the unmanaged ones. so it needs to be handled here. * [wasm] WasmApp.Native.targets: do not trigger relinking when WasmEnableSIMD=true Instead, let the property be effective only for the AOT case. * Use staging image with newer v8 * [wasm] WasmAppHost: Add support for host arguments * [wasm] console template: Add --experimental-wasm-simd to node, and remove v8 config as that isn't supported * [wasm] Pass --experiment-wasm-simd for aot library tests too * Try to pass full path to v8 Also remove --experimental-wasm-simd option, which shouldn't be needed for newer v8 * Use docker image for all wasm helix jobs As we need newer v8 * Set DOTNET_CLI_HOME under workitem payload The correlation payload is read only * Revert "Try to pass full path to v8" This reverts commit a15b3ef. * Use DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 Let see whether it will avoid all the writes to correlation payload path * Set NeedsEMSDKNode to false To try if we can use newer node in path * Revert "Set DOTNET_CLI_HOME under workitem payload" This reverts commit 5dec1aa. * Set DOTNET_CLI_HOME under workitem payload The correlation payload is read only. And even with `export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1` we have still many failures. * Reverse the test here as we don't relink anymore * Set _ExtraTrimmerArgs for tests So that linker substitution files are used * Put the SIMD/trim related props in separate group More changes from Ankit * Add dynamic dependency * Disable Vector128IsHardwareAcceleratedTest Til we have the interpreter support in place * Disable GenericVectorTests.IsHardwareAcceleratedTest Til we have the interpreter support in place * Disable check_no_intrinsic_cattr in emit_vector_2_3_4 And add note about opened issue * [mono] Disable few quaternion intrinsics For * and / operators as these are not the same as vector operations. Opened #82408 to implement correct ones in future. * Change comparison order * Use stable images * WBT: Add --engine-arg=--experimental-wasm-simd for node, and v8 * Do not skip dotnet 1st time experience anymore --------- Co-authored-by: Ankit Jain <[email protected]>
1 parent 5b89020 commit cdd71fe

File tree

13 files changed

+36
-19
lines changed

13 files changed

+36
-19
lines changed

eng/pipelines/libraries/helix-queues-setup.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ jobs:
193193

194194
# Browser WebAssembly
195195
- ${{ if eq(parameters.platform, 'browser_wasm') }}:
196-
- Ubuntu.1804.Amd64.Open
196+
- (Ubuntu.1804.Amd64)Ubuntu.1804.Amd64.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-helix-webassembly
197197

198198
# Browser WebAssembly Firefox
199199
- ${{ if eq(parameters.platform, 'browser_wasm_firefox') }}:

eng/testing/WasmRunnerAOTTemplate.sh

+2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ if [[ "$XHARNESS_COMMAND" == "test" ]]; then
3535
if [[ -z "$JS_ENGINE" ]]; then
3636
if [[ "$SCENARIO" == "WasmTestOnNodeJS" || "$SCENARIO" == "wasmtestonnodejs" ]]; then
3737
JS_ENGINE="--engine=NodeJS"
38+
JS_ENGINE_ARGS="$JS_ENGINE_ARGS --engine-arg=--experimental-wasm-simd"
3839
else
3940
JS_ENGINE="--engine=V8"
41+
JS_ENGINE_ARGS="$JS_ENGINE_ARGS --engine-arg=--experimental-wasm-simd"
4042
fi
4143
fi
4244

eng/testing/tests.wasm.targets

+15
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,21 @@
3535
<BuildAOTTestsOn Condition="'$(BuildAOTTestsOn)' == ''">local</BuildAOTTestsOn>
3636
</PropertyGroup>
3737

38+
<PropertyGroup Condition="'$(BuildAOTTestsOn)' == 'local'">
39+
<!--
40+
When building for BuildAOTTestsOnHelix=true, the WasmApp*targets are *not* imported, because
41+
they get instead used by the AOT proxy project on helix.
42+
43+
On the build machine only the regular part of the build is run, which includes trimming. But if
44+
WasmApp*targets modify any trimming arguments, then those will not get picked up by this build.
45+
For example - linker substitution files used with simd builds.
46+
47+
So, set those parameters explicitly here.
48+
-->
49+
<_ExtraTrimmerArgs Condition="'$(WasmEnableSIMD)' == 'true'">$(_ExtraTrimmerArgs) --substitutions &quot;$(MonoProjectRoot)\wasm\build\ILLink.Substitutions.WasmIntrinsics.xml&quot;</_ExtraTrimmerArgs>
50+
<_ExtraTrimmerArgs Condition="'$(WasmEnableSIMD)' != 'true'">$(_ExtraTrimmerArgs) --substitutions &quot;$(MonoProjectRoot)\wasm\build\ILLink.Substitutions.NoWasmIntrinsics.xml&quot;</_ExtraTrimmerArgs>
51+
</PropertyGroup>
52+
3853
<ItemGroup>
3954
<_AOT_InternalForceInterpretAssemblies Include="@(HighAotMemoryUsageAssembly)" />
4055
</ItemGroup>

src/libraries/System.Numerics.Vectors/tests/GenericVectorTests.cs

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ static GenericVectorTests()
2727
}
2828

2929
[Fact]
30+
[ActiveIssue("https://github.com/dotnet/runtime/issues/81785", TestPlatforms.Browser)]
3031
public unsafe void IsHardwareAcceleratedTest()
3132
{
3233
MethodInfo methodInfo = typeof(Vector).GetMethod("get_IsHardwareAccelerated");

src/libraries/System.Runtime.Intrinsics/tests/Vectors/Vector128Tests.cs

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4+
using System.Diagnostics.CodeAnalysis;
45
using System.Numerics;
56
using System.Reflection;
67
using System.Runtime.InteropServices;
@@ -11,6 +12,8 @@ namespace System.Runtime.Intrinsics.Tests.Vectors
1112
public sealed class Vector128Tests
1213
{
1314
[Fact]
15+
[DynamicDependency(DynamicallyAccessedMemberTypes.PublicProperties, typeof(Vector128))]
16+
[ActiveIssue("https://github.com/dotnet/runtime/issues/81785", TestPlatforms.Browser)]
1417
public unsafe void Vector128IsHardwareAcceleratedTest()
1518
{
1619
MethodInfo methodInfo = typeof(Vector128).GetMethod("get_IsHardwareAccelerated");

src/libraries/sendtohelix-wasm.targets

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
<NeedsWorkload Condition="'$(Scenario)' == 'BuildWasmApps'">true</NeedsWorkload>
4848
<NeedsEMSDK Condition="'$(NeedsToBuildWasmAppsOnHelix)' == 'true'">true</NeedsEMSDK>
49-
<NeedsEMSDKNode Condition="'$(Scenario)' == 'WasmTestOnNodeJS' or '$(Scenario)' == 'BuildWasmApps'">true</NeedsEMSDKNode>
49+
<NeedsEMSDKNode Condition="'$(Scenario)' == 'WasmTestOnNodeJS' or '$(Scenario)' == 'BuildWasmApps'">false</NeedsEMSDKNode>
5050
<NeedsToRunOnBrowser Condition="'$(Scenario)' == 'WasmTestOnBrowser' or '$(Scenario)' == 'BuildWasmApps'">true</NeedsToRunOnBrowser>
5151
<NeedsBuiltNugets Condition="'$(Scenario)' == 'BuildWasmApps'">true</NeedsBuiltNugets>
5252

src/mono/mono/mini/simd-intrinsics.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1954,7 +1954,8 @@ emit_vector_2_3_4 (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *f
19541954

19551955
id = lookup_intrins (vector2_methods, sizeof (vector2_methods), cmethod);
19561956
if (id == -1) {
1957-
check_no_intrinsic_cattr (cmethod);
1957+
// https://github.com/dotnet/runtime/issues/81961
1958+
// check_no_intrinsic_cattr (cmethod);
19581959
return NULL;
19591960
}
19601961

src/mono/wasm/Wasm.Build.Tests/HostRunner/NodeJSHostRunner.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ namespace Wasm.Build.Tests;
88
public class NodeJSHostRunner : IHostRunner
99
{
1010
public string GetTestCommand() => "wasm test";
11-
public string GetXharnessArgsWindowsOS(XHarnessArgsOptions options) => $"--js-file={options.jsRelativePath} --engine=NodeJS -v trace";
12-
public string GetXharnessArgsOtherOS(XHarnessArgsOptions options) => $"--js-file={options.jsRelativePath} --engine=NodeJS -v trace --locale={options.environmentLocale}";
11+
public string GetXharnessArgsWindowsOS(XHarnessArgsOptions options) => $"--js-file={options.jsRelativePath} --engine=NodeJS -v trace --engine-arg=--experimental-wasm-simd";
12+
public string GetXharnessArgsOtherOS(XHarnessArgsOptions options) => $"--js-file={options.jsRelativePath} --engine=NodeJS -v trace --locale={options.environmentLocale} --engine-arg=--experimental-wasm-simd";
1313
public bool UseWasmConsoleOutput() => true;
1414
public bool CanRunWBT() => true;
1515
}

src/mono/wasm/Wasm.Build.Tests/HostRunner/V8HostRunner.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Wasm.Build.Tests;
99

1010
public class V8HostRunner : IHostRunner
1111
{
12-
private string GetXharnessArgs(string jsRelativePath) => $"--js-file={jsRelativePath} --engine=V8 -v trace";
12+
private string GetXharnessArgs(string jsRelativePath) => $"--js-file={jsRelativePath} --engine=V8 -v trace --engine-arg=--experimental-wasm-simd";
1313

1414
public string GetTestCommand() => "wasm test";
1515
public string GetXharnessArgsWindowsOS(XHarnessArgsOptions options) => GetXharnessArgs(options.jsRelativePath);

src/mono/wasm/Wasm.Build.Tests/WasmSIMDTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public WasmSIMDTests(ITestOutputHelper output, SharedBuildPerTestClassFixture bu
1818

1919
[Theory]
2020
[MemberData(nameof(MainMethodTestData), parameters: new object[] { /*aot*/ false, RunHost.All })]
21-
public void BuildWithSIMD_NoAOT_ShouldRelink(BuildArgs buildArgs, RunHost host, string id)
21+
public void BuildWithSIMD_NoAOT_ShouldNotRelink(BuildArgs buildArgs, RunHost host, string id)
2222
{
2323
string projectName = $"sim_with_workload_no_aot";
2424
buildArgs = buildArgs with { ProjectName = projectName };
@@ -29,7 +29,7 @@ public void BuildWithSIMD_NoAOT_ShouldRelink(BuildArgs buildArgs, RunHost host,
2929
new BuildProjectOptions(
3030
InitProject: () => File.WriteAllText(Path.Combine(_projectDir!, "Program.cs"), s_simdProgramText),
3131
Publish: false,
32-
DotnetWasmFromRuntimePack: false));
32+
DotnetWasmFromRuntimePack: true));
3333

3434
if (!_buildContext.TryGetBuildFor(buildArgs, out _))
3535
{

src/mono/wasm/build/WasmApp.Native.targets

+1-4
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@
113113
<!-- build AOT, only if explicitly requested -->
114114
<WasmBuildNative Condition="'$(RunAOTCompilation)' == 'true' and '$(RunAOTCompilationAfterBuild)' == 'true'">true</WasmBuildNative>
115115

116-
<WasmBuildNative Condition="'$(WasmBuildNative)' == '' and '$(WasmEnableSIMD)' == 'true'">true</WasmBuildNative>
117-
118116
<WasmBuildNative Condition="'$(WasmBuildNative)' == '' and @(NativeFileReference->Count()) > 0" >true</WasmBuildNative>
119117

120118
<WasmBuildNative Condition="'$(WasmBuildNative)' == ''">false</WasmBuildNative>
@@ -125,7 +123,6 @@
125123
<!-- AOT==true overrides WasmBuildNative -->
126124
<WasmBuildNative Condition="'$(RunAOTCompilation)' == 'true'">true</WasmBuildNative>
127125
<WasmBuildNative Condition="'$(WasmBuildNative)' == '' and @(NativeFileReference->Count()) > 0" >true</WasmBuildNative>
128-
<WasmBuildNative Condition="'$(WasmBuildNative)' == '' and '$(WasmEnableSIMD)' == 'true'">true</WasmBuildNative>
129126

130127
<!-- not aot, not trimmed app, no reason to relink -->
131128
<WasmBuildNative Condition="'$(WasmBuildNative)' == '' and '$(PublishTrimmed)' != 'true'">false</WasmBuildNative>
@@ -203,7 +200,7 @@
203200
<_EmccCommonFlags Include="-v" Condition="'$(EmccVerbose)' != 'false'" />
204201
<_EmccCommonFlags Include="-s DISABLE_EXCEPTION_CATCHING=0" Condition="'$(WasmEnableExceptionHandling)' == 'false'" />
205202
<_EmccCommonFlags Include="-fwasm-exceptions" Condition="'$(WasmEnableExceptionHandling)' == 'true'" />
206-
<_EmccCommonFlags Include="-msimd128" Condition="'$(WasmEnableSIMD)' == 'true'" />
203+
<_EmccCommonFlags Include="-msimd128" Condition="'$(WasmEnableSIMD)' == 'true' and '$(_WasmShouldAOT)' == 'true'" />
207204

208205
<_EmccIncludePaths Include="$(_WasmIntermediateOutputPath.TrimEnd('\/'))" />
209206
<_EmccIncludePaths Include="$(_WasmRuntimePackIncludeDir)mono-2.0" />

src/mono/wasm/build/WasmApp.targets

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<PropertyGroup>
9494
<WasmDedup Condition="'$(WasmDedup)' == ''">true</WasmDedup>
9595
<WasmEnableExceptionHandling Condition="'$(WasmEnableExceptionHandling)' == ''">false</WasmEnableExceptionHandling>
96-
<WasmEnableSIMD Condition="'$(WasmEnableSIMD)' == ''">false</WasmEnableSIMD>
96+
<WasmEnableSIMD Condition="'$(WasmEnableSIMD)' == ''">true</WasmEnableSIMD>
9797

9898
<!--<WasmStripAOTAssemblies Condition="'$(AOTMode)' == 'LLVMOnlyInterp'">false</WasmStripAOTAssemblies>-->
9999
<!--<WasmStripAOTAssemblies Condition="'$(WasmStripAOTAssemblies)' == ''">$(RunAOTCompilation)</WasmStripAOTAssemblies>-->

src/mono/wasm/templates/templates/console/runtimeconfig.template.json

+4-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@
44
{
55
"name": "node",
66
"js-path": "main.mjs",
7-
"Host": "nodejs"
8-
},
9-
{
10-
"name": "v8",
11-
"js-path": "main.mjs",
12-
"Host": "v8"
7+
"Host": "nodejs",
8+
"host-args": [
9+
"--experimental-wasm-simd"
10+
]
1311
}
1412
]
1513
}

0 commit comments

Comments
 (0)