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
Copy file name to clipboardExpand all lines: src/Config.cs
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -156,6 +156,19 @@ public Config WithSIMD(bool enable)
156
156
returnthis;
157
157
}
158
158
159
+
/// <summary>
160
+
/// Sets whether or not to enable WebAssembly Relaxed SIMD support. New SIMD instructions that may be non-deterministic across different hosts unless deterministic mode is enabled.
161
+
/// </summary>
162
+
/// <param name="enable">True to enable WebAssembly Relaxed SIMD support or false to disable.</param>
163
+
/// <param name="deterministic">True to enable deterministic mode for WebAssembly Relaxed SIMD or false to allow non-deterministic execution.</param>
164
+
/// <returns>Returns the current config.</returns>
0 commit comments