You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Tensorflow.Benchmark.csproj 2.1 kB

2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <Platforms>AnyCPU;x64</Platforms>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  9. <DefineConstants>DEBUG;TRACE</DefineConstants>
  10. <PlatformTarget>x64</PlatformTarget>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  13. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  14. <DefineConstants>DEBUG;TRACE</DefineConstants>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  20. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <Compile Remove="BenchmarkDotNet.Artifacts\**" />
  24. <EmbeddedResource Remove="BenchmarkDotNet.Artifacts\**" />
  25. <None Remove="BenchmarkDotNet.Artifacts\**" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <None Remove="tensorflow.dll" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <PackageReference Include="BenchmarkDotNet" Version="0.13.5" />
  32. <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.11.0" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <ProjectReference Include="..\..\src\TensorFlowNET.Keras\Tensorflow.Keras.csproj" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Folder Include="Leak\TestModel\saved_model\assets\" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <None Update="Leak\TestModel\saved_model\saved_model.pb">
  42. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  43. </None>
  44. <None Update="Leak\TestModel\saved_model\variables\variables.data-00000-of-00001">
  45. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  46. </None>
  47. <None Update="Leak\TestModel\saved_model\variables\variables.index">
  48. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  49. </None>
  50. </ItemGroup>
  51. </Project>