| @@ -13,6 +13,11 @@ PM> Install-Package SciSharp.TensorFlow.Redist | |||||
| PM> Install-Package SciSharp.TensorFlow.Redist-Windows-GPU | PM> Install-Package SciSharp.TensorFlow.Redist-Windows-GPU | ||||
| ``` | ``` | ||||
| * GPU version for Linux | |||||
| ```powershell | |||||
| PM> Install-Package SciSharp.TensorFlow.Redist-Linux-GPU | |||||
| ``` | |||||
| https://www.nuget.org/packages/SciSharp.TensorFlow.Redist | https://www.nuget.org/packages/SciSharp.TensorFlow.Redist | ||||
| Related merged [commits](https://github.com/SciSharp/TensorFlow.NET/commit/854a5ba61ad0e400623821236bd117cc24c6cb77). | Related merged [commits](https://github.com/SciSharp/TensorFlow.NET/commit/854a5ba61ad0e400623821236bd117cc24c6cb77). | ||||
| @@ -9,6 +9,7 @@ | |||||
| <license type="file">LICENSE.txt</license> | <license type="file">LICENSE.txt</license> | ||||
| <licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl> | <licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl> | ||||
| <projectUrl>https://www.tensorflow.org/</projectUrl> | <projectUrl>https://www.tensorflow.org/</projectUrl> | ||||
| <iconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&v=4</iconUrl> | |||||
| <description>$packageId$ contains the TensorFlow C library CPU version $version$ redistributed as a NuGet package.</description> | <description>$packageId$ contains the TensorFlow C library CPU version $version$ redistributed as a NuGet package.</description> | ||||
| <releaseNotes>https://github.com/tensorflow/tensorflow/releases/tag/v$version$</releaseNotes> | <releaseNotes>https://github.com/tensorflow/tensorflow/releases/tag/v$version$</releaseNotes> | ||||
| <copyright>Copyright 2019 The TensorFlow Authors. All rights reserved.</copyright> | <copyright>Copyright 2019 The TensorFlow Authors. All rights reserved.</copyright> | ||||
| @@ -0,0 +1,27 @@ | |||||
| <?xml version="1.0" encoding="utf-8"?> | |||||
| <package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | |||||
| <metadata> | |||||
| <id>$packageId$</id> | |||||
| <version>$version$</version> | |||||
| <authors>The TensorFlow Authors</authors> | |||||
| <owners>The TensorFlow Authors</owners> | |||||
| <requireLicenseAcceptance>true</requireLicenseAcceptance> | |||||
| <license type="file">LICENSE.txt</license> | |||||
| <licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl> | |||||
| <projectUrl>https://www.tensorflow.org/</projectUrl> | |||||
| <iconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&v=4</iconUrl> | |||||
| <description>$packageId$ contains the TensorFlow C library GPU for Linux version $version$ redistributed as a NuGet package.</description> | |||||
| <releaseNotes>https://github.com/tensorflow/tensorflow/releases/tag/v$version$</releaseNotes> | |||||
| <copyright>Copyright 2019 The TensorFlow Authors. All rights reserved.</copyright> | |||||
| <tags>TensorFlow</tags> | |||||
| <dependencies> | |||||
| <group targetFramework=".NETStandard2.0" /> | |||||
| </dependencies> | |||||
| </metadata> | |||||
| <files> | |||||
| <file src="CommonPackage.props" target="build\netstandard2.0\$packageId$.props" /> | |||||
| <file src="bin\packages\$packageId$\LICENSE.txt" target="LICENSE.txt" /> | |||||
| <file src="bin\packages\$packageId$\THIRD_PARTY_NOTICES.txt" target="THIRD_PARTY_NOTICES.txt" /> | |||||
| <file src="bin\packages\$packageId$\runtimes\**\*" target="runtimes" /> | |||||
| </files> | |||||
| </package> | |||||
| @@ -9,7 +9,8 @@ | |||||
| <license type="file">LICENSE.txt</license> | <license type="file">LICENSE.txt</license> | ||||
| <licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl> | <licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl> | ||||
| <projectUrl>https://www.tensorflow.org/</projectUrl> | <projectUrl>https://www.tensorflow.org/</projectUrl> | ||||
| <description>$packageId$ contains the TensorFlow C library GPU version $version$ redistributed as a NuGet package.</description> | |||||
| <iconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&v=4</iconUrl> | |||||
| <description>$packageId$ contains the TensorFlow C library GPU for Windows version $version$ redistributed as a NuGet package.</description> | |||||
| <releaseNotes>https://github.com/tensorflow/tensorflow/releases/tag/v$version$</releaseNotes> | <releaseNotes>https://github.com/tensorflow/tensorflow/releases/tag/v$version$</releaseNotes> | ||||
| <copyright>Copyright 2019 The TensorFlow Authors. All rights reserved.</copyright> | <copyright>Copyright 2019 The TensorFlow Authors. All rights reserved.</copyright> | ||||
| <tags>TensorFlow</tags> | <tags>TensorFlow</tags> | ||||
| @@ -17,7 +17,7 @@ | |||||
| <NoBuild>true</NoBuild> | <NoBuild>true</NoBuild> | ||||
| <IncludeBuildOutput>false</IncludeBuildOutput> | <IncludeBuildOutput>false</IncludeBuildOutput> | ||||
| <NuspecFile>Redist-Windows-GPU.nuspec</NuspecFile> | |||||
| <NuspecFile>Redist-Linux-GPU.nuspec</NuspecFile> | |||||
| <NuspecProperties>packageId=$(PackageId);version=$(PackageVersion)</NuspecProperties> | <NuspecProperties>packageId=$(PackageId);version=$(PackageVersion)</NuspecProperties> | ||||
| <NuspecBasePath>$(ProjDir)</NuspecBasePath> | <NuspecBasePath>$(ProjDir)</NuspecBasePath> | ||||