forked from kunzmi/managedCuda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanagedcudanet.nuspec
More file actions
29 lines (28 loc) · 1.68 KB
/
managedcudanet.nuspec
File metadata and controls
29 lines (28 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>ManagedCudaNet</id>
<version>12.0</version>
<title>ManagedCudaNet</title>
<authors>DeltaEngine</authors>
<owners>DeltaEngine</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">LGPL-2.1-only</license>
<licenseUrl>https://licenses.nuget.org/LGPL-2.1-only</licenseUrl>
<projectUrl>https://github.com/deltaengine/managedCuda/</projectUrl>
<iconUrl>https://api.nuget.org/v3-flatcontainer/swigged.cuda/9.2148.3/icon</iconUrl>
<description>2022-12-12: Updated to Cuda 12.0 and using .NET 7 for better performance. Added few new Cuda 12 methods as mentioned in Cuda 12 release notes, rest is unchanged as most things changed in compiler and implementation.
Based on ManagedCuda + CudaBlas + NVRTC, which aims an easy integration of NVidia's CUDA in .net applications written in C#, Visual Basic or any other .net language. This package includes only the core managedCuda library + CudaBlas (common math functions) + NVRTC (to compile), no additional CUDA libraries and is platform independent (Windows/Linux/.net 7.0).</description>
<copyright>Michael Kunz</copyright>
<language>en-US</language>
<tags>cuda managedCuda gpu</tags>
<dependencies>
<group targetFramework="net7.0" />
</dependencies>
</metadata>
<files>
<file src="ManagedCUDA\bin\Release\net7.0\ManagedCuda.dll" target="lib/net7.0" />
<file src="CudaBlas\bin\x64\Release\net7.0\CudaBlas.dll" target="lib/net7.0" />
<file src="NVRTC\bin\x64\Release\net7.0\NVRTC.dll" target="lib/net7.0" />
</files>
</package>