Skip to content

Commit

Permalink
Add WasmDedup=false to S.N.Tensors.Tests (dotnet#96701)
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding authored Jan 10, 2024
1 parent 904c439 commit 89411b7
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>$(NetCoreAppCurrent);$(NetFrameworkMinimum)</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<PropertyGroup>
<!-- Workaround an OOM in LLVM -->
<WasmDedup>false</WasmDedup>
</PropertyGroup>

<ItemGroup>
<Compile Include="Helpers.cs" />
<Compile Include="TensorPrimitives.NonGeneric.Single.cs" />
Expand All @@ -15,7 +20,7 @@
<Compile Include="TensorPrimitives.ConvertTo.cs" />
<Compile Include="TensorPrimitives.Generic.cs" />
</ItemGroup>

<ItemGroup>
<!-- Some internal types are needed, so we reference the implementation assembly, rather than the reference assembly. -->
<ProjectReference Include="..\src\System.Numerics.Tensors.csproj" SkipUseReferenceAssembly="true" />
Expand All @@ -25,4 +30,4 @@
<PackageReference Include="System.ValueTuple" Version="$(SystemValueTupleVersion)" />
</ItemGroup>

</Project>
</Project>

0 comments on commit 89411b7

Please sign in to comment.