Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Nvidia Specific Builds #125

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions OnnxStack.Console/OnnxStack.Console.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<PlatformTarget>x64</PlatformTarget>
<Configurations>Debug;Release;Debug-Cuda;Debug-TensorRT;Release-Cuda;Release-TensorRT</Configurations>
<Configurations>Debug;Release;Debug-Nvidia;Release-Nvidia</Configurations>
<Platforms>x64</Platforms>
</PropertyGroup>

Expand All @@ -16,18 +16,17 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
<PackageReference Include="OnnxStack.FeatureExtractor" Version="0.19.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
<ProjectReference Include="..\OnnxStack.FeatureExtractor\OnnxStack.FeatureExtractor.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
<ProjectReference Include="..\OnnxStack.StableDiffusion\OnnxStack.StableDiffusion.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
<ProjectReference Include="..\OnnxStack.ImageUpscaler\OnnxStack.ImageUpscaler.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Nvidia'" />
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Nvidia'" />
<PackageReference Include="OnnxStack.FeatureExtractor" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Nvidia'" />
<ProjectReference Include="..\OnnxStack.FeatureExtractor\OnnxStack.FeatureExtractor.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Nvidia'" />
<ProjectReference Include="..\OnnxStack.StableDiffusion\OnnxStack.StableDiffusion.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Nvidia'" />
<ProjectReference Include="..\OnnxStack.ImageUpscaler\OnnxStack.ImageUpscaler.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Nvidia'" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ML.OnnxRuntime.DirectML" Version="1.17.1" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Release' " />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Gpu" Version="1.16.3" Condition=" '$(Configuration)' == 'Debug-TensorRT' OR '$(Configuration)' == 'Release-TensorRT'" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Gpu" Version="1.16.3" Condition=" '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Release-Cuda'" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Gpu" Version="1.17.1" Condition=" '$(Configuration)' == 'Debug-Nvidia' OR '$(Configuration)' == 'Release-Nvidia'" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions OnnxStack.Core/OnnxStack.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PackageIcon>OnnxStack - 128x128.png</PackageIcon>
<Configurations>Debug;Release</Configurations>
<Platforms>x64</Platforms>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions OnnxStack.FeatureExtractor/OnnxStack.FeatureExtractor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OnnxStack.Core" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' " />
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' " />
<PackageReference Include="OnnxStack.Core" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Nvidia'" />
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)'=='Debug-Nvidia'" />
</ItemGroup>

<ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions OnnxStack.ImageUpscaler/OnnxStack.ImageUpscaler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PackageIcon>OnnxStack - 128x128.png</PackageIcon>
<Configurations>Debug;Release</Configurations>
<Platforms>x64</Platforms>
</PropertyGroup>

Expand All @@ -34,8 +35,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OnnxStack.Core" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' " />
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' " />
<PackageReference Include="OnnxStack.Core" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Nvidia'" />
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)'=='Debug-Nvidia'" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 4 additions & 2 deletions OnnxStack.StableDiffusion/OnnxStack.StableDiffusion.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PackageIcon>OnnxStack - 128x128.png</PackageIcon>
<Configurations>Debug;Release</Configurations>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>

<ItemGroup>
Expand All @@ -44,8 +46,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OnnxStack.Core" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' " />
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' " />
<PackageReference Include="OnnxStack.Core" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Nvidia'" />
<ProjectReference Include="..\OnnxStack.Core\OnnxStack.Core.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)'=='Debug-Nvidia'" />
</ItemGroup>


Expand Down
4 changes: 1 addition & 3 deletions OnnxStack.UI/Models/OnnxStackUIConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ public class OnnxStackUIConfig : IConfigSection

public ExecutionProvider GetSupportedExecutionProvider()
{
#if DEBUG_CUDA || RELEASE_CUDA
#if DEBUG_NVIDIA || RELEASE_NVIDIA
return ExecutionProvider.Cuda;
#elif DEBUG_TENSORRT || RELEASE_TENSORRT
return ExecutionProvider.TensorRT;
#else
return ExecutionProvider.DirectML;
#endif
Expand Down
23 changes: 9 additions & 14 deletions OnnxStack.UI/OnnxStack.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<PlatformTarget>x64</PlatformTarget>
<Configurations>Debug;Release;Debug-Cuda;Debug-TensorRT;Release-Cuda;Release-TensorRT</Configurations>
<Configurations>Debug;Release;Debug-Nvidia;Release-Nvidia</Configurations>
<Platforms>x64</Platforms>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-Cuda|x64'">
<Optimize>True</Optimize>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-TensorRT|x64'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-Nvidia|x64'">
<Optimize>True</Optimize>
</PropertyGroup>

Expand Down Expand Up @@ -51,18 +47,17 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
<PackageReference Include="OnnxStack.FeatureExtractor" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Cuda' OR '$(Configuration)' == 'Release-TensorRT'" />
<ProjectReference Include="..\OnnxStack.FeatureExtractor\OnnxStack.FeatureExtractor.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
<ProjectReference Include="..\OnnxStack.StableDiffusion\OnnxStack.StableDiffusion.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
<ProjectReference Include="..\OnnxStack.ImageUpscaler\OnnxStack.ImageUpscaler.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Debug-TensorRT'" />
<PackageReference Include="OnnxStack.StableDiffusion" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Nvidia'" />
<PackageReference Include="OnnxStack.ImageUpscaler" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Nvidia'" />
<PackageReference Include="OnnxStack.FeatureExtractor" Version="0.22.0" Condition=" '$(Configuration)' == 'Release' OR '$(Configuration)' == 'Release-Nvidia'" />
<ProjectReference Include="..\OnnxStack.FeatureExtractor\OnnxStack.FeatureExtractor.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Nvidia'" />
<ProjectReference Include="..\OnnxStack.StableDiffusion\OnnxStack.StableDiffusion.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Nvidia'" />
<ProjectReference Include="..\OnnxStack.ImageUpscaler\OnnxStack.ImageUpscaler.csproj" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Debug-Nvidia'" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ML.OnnxRuntime.DirectML" Version="1.17.1" Condition=" '$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Release' " />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Gpu" Version="1.16.3" Condition=" '$(Configuration)' == 'Debug-TensorRT' OR '$(Configuration)' == 'Release-TensorRT'" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Gpu" Version="1.16.3" Condition=" '$(Configuration)' == 'Debug-Cuda' OR '$(Configuration)' == 'Release-Cuda'" />
<PackageReference Include="Microsoft.ML.OnnxRuntime.Gpu" Version="1.16.3" Condition=" '$(Configuration)' == 'Debug-Nvidia' OR '$(Configuration)' == 'Release-Nvidia'" />
</ItemGroup>

<ItemGroup>
Expand Down
60 changes: 30 additions & 30 deletions OnnxStack.sln
Original file line number Diff line number Diff line change
Expand Up @@ -20,67 +20,67 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug-Cuda|x64 = Debug-Cuda|x64
Debug-Nvidia|x64 = Debug-Nvidia|x64
Release|x64 = Release|x64
Release-Cuda|x64 = Release-Cuda|x64
Release-Nvidia|x64 = Release-Nvidia|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{02404CEB-207F-4D19-894C-11D51394F1D5}.Debug|x64.ActiveCfg = Debug|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Debug|x64.Build.0 = Debug|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Debug-Cuda|x64.ActiveCfg = Debug|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Debug-Cuda|x64.Build.0 = Debug|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Debug-Nvidia|x64.ActiveCfg = Debug|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Debug-Nvidia|x64.Build.0 = Debug|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release|x64.ActiveCfg = Release|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release|x64.Build.0 = Release|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release-Cuda|x64.ActiveCfg = Release|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release-Cuda|x64.Build.0 = Release|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release-Nvidia|x64.ActiveCfg = Release|x64
{02404CEB-207F-4D19-894C-11D51394F1D5}.Release-Nvidia|x64.Build.0 = Release|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Debug|x64.ActiveCfg = Debug|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Debug|x64.Build.0 = Debug|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Debug-Cuda|x64.ActiveCfg = Debug|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Debug-Cuda|x64.Build.0 = Debug|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Debug-Nvidia|x64.ActiveCfg = Debug|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Debug-Nvidia|x64.Build.0 = Debug|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release|x64.ActiveCfg = Release|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release|x64.Build.0 = Release|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release-Cuda|x64.ActiveCfg = Release|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release-Cuda|x64.Build.0 = Release|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release-Nvidia|x64.ActiveCfg = Release|x64
{EA1F61D0-490B-42EC-96F5-7DCCAB94457A}.Release-Nvidia|x64.Build.0 = Release|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Debug|x64.ActiveCfg = Debug|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Debug|x64.Build.0 = Debug|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Debug-Cuda|x64.ActiveCfg = Debug-Cuda|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Debug-Cuda|x64.Build.0 = Debug-Cuda|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Debug-Nvidia|x64.ActiveCfg = Debug-Nvidia|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Debug-Nvidia|x64.Build.0 = Debug-Nvidia|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release|x64.ActiveCfg = Release|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release|x64.Build.0 = Release|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release-Cuda|x64.ActiveCfg = Release-Cuda|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release-Cuda|x64.Build.0 = Release-Cuda|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release-Nvidia|x64.ActiveCfg = Release-Nvidia|x64
{46A43C80-A440-4461-B7EB-81FA998FB24B}.Release-Nvidia|x64.Build.0 = Release-Nvidia|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Debug|x64.ActiveCfg = Debug|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Debug|x64.Build.0 = Debug|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Debug-Cuda|x64.ActiveCfg = Debug-Cuda|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Debug-Cuda|x64.Build.0 = Debug-Cuda|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Debug-Nvidia|x64.ActiveCfg = Debug-Nvidia|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Debug-Nvidia|x64.Build.0 = Debug-Nvidia|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release|x64.ActiveCfg = Release|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release|x64.Build.0 = Release|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release-Cuda|x64.ActiveCfg = Release-Cuda|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release-Cuda|x64.Build.0 = Release-Cuda|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release-Nvidia|x64.ActiveCfg = Release-Nvidia|x64
{85BB1855-8C3B-4049-A2DD-1130FA6CD846}.Release-Nvidia|x64.Build.0 = Release-Nvidia|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Debug|x64.ActiveCfg = Debug|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Debug|x64.Build.0 = Debug|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Debug-Cuda|x64.ActiveCfg = Debug|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Debug-Cuda|x64.Build.0 = Debug|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Debug-Nvidia|x64.ActiveCfg = Debug|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Debug-Nvidia|x64.Build.0 = Debug|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release|x64.ActiveCfg = Release|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release|x64.Build.0 = Release|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release-Cuda|x64.ActiveCfg = Release|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release-Cuda|x64.Build.0 = Release|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release-Nvidia|x64.ActiveCfg = Release|x64
{A33D08BF-7881-4910-8439-5AE46646C1DD}.Release-Nvidia|x64.Build.0 = Release|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Debug|x64.ActiveCfg = Debug|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Debug|x64.Build.0 = Debug|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Debug-Cuda|x64.ActiveCfg = Debug|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Debug-Cuda|x64.Build.0 = Debug|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Debug-Nvidia|x64.ActiveCfg = Debug|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Debug-Nvidia|x64.Build.0 = Debug|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Release|x64.ActiveCfg = Release|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Release|x64.Build.0 = Release|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Release-Cuda|x64.ActiveCfg = Release|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Release-Cuda|x64.Build.0 = Release|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Release-Nvidia|x64.ActiveCfg = Release|x64
{5A64FC26-6926-4A45-ACCE-1FE173166990}.Release-Nvidia|x64.Build.0 = Release|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Debug|x64.ActiveCfg = Debug|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Debug|x64.Build.0 = Debug|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Debug-Cuda|x64.ActiveCfg = Debug|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Debug-Cuda|x64.Build.0 = Debug|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Debug-Nvidia|x64.ActiveCfg = Debug|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Debug-Nvidia|x64.Build.0 = Debug|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Release|x64.ActiveCfg = Release|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Release|x64.Build.0 = Release|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Release-Cuda|x64.ActiveCfg = Release|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Release-Cuda|x64.Build.0 = Release|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Release-Nvidia|x64.ActiveCfg = Release|x64
{0E8095A4-83EF-48AD-9BD1-0CC2893050F6}.Release-Nvidia|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down