CUDAfy.NET 1.7.4364.27657

There is a newer version of this package available.
See the version list below for details.
dotnet add package CUDAfy.NET --version 1.7.4364.27657
                    
NuGet\Install-Package CUDAfy.NET -Version 1.7.4364.27657
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CUDAfy.NET" Version="1.7.4364.27657" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CUDAfy.NET" Version="1.7.4364.27657" />
                    
Directory.Packages.props
<PackageReference Include="CUDAfy.NET" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CUDAfy.NET --version 1.7.4364.27657
                    
#r "nuget: CUDAfy.NET, 1.7.4364.27657"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CUDAfy.NET@1.7.4364.27657
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CUDAfy.NET&version=1.7.4364.27657
                    
Install as a Cake Addin
#tool nuget:?package=CUDAfy.NET&version=1.7.4364.27657
                    
Install as a Cake Tool

CUDAfy is an SDK that permits general purpose programming of NVIDIA CUDA Graphics Processing Units (GPUs) completely from within the Microsoft .NET framework.  GPU device code and host code can be written in .NET using standard .NET types. There are also wrappers for the CUDA Random, FFT and BLAS libraries.

The NVIDIA CUDA 4.0 Toolkit must be installed.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.29.5576.13786 580 4/8/2015
1.27.5314.36419 446 8/27/2014
1.25.4963.10126 1,285 8/21/2013
1.22.4875.21265 52 5/8/2013
1.12.4695.21111 57 12/1/2012
1.9.4495.35683 52 5/9/2012
1.8.4427.36820 52 2/14/2012
1.7.4364.27657 54 12/22/2011
1.5.4315.23069 54 10/26/2011
1.4.4209.28745 57 7/12/2011
1.3.4188.30556 56 6/21/2011

V1.7 - 13-12-11
Fix: Compiler options for specific CUDA version not handled correctly.
Fix: Context switching to use SetCurrentContext and GetCurrentContext.
Chg: Use DefaultEncoding for generated CUDA C files.
Add: Basic support for Unicode strings.
Fix: In unit test TestASUMInVectorStep, N should be divided by 2.
Fix: Wrong code generated for 2D indexing when an indexer is a statement (e.g. [x+1,y+1]).
Fix: CUDARuntime class now explicitly supports 64-bit only (cudart64_40_17.dll). Support for 32-bit can be given by  manually altering DLL_NAME in source file.
Fix: Checksum check should also ensure that a suitable PTX exists.
Add: SPARSE Matrix library Level 1,2,3 for real numbers.
Add: Conjugate Gradient solver.
Add: Biconjugate gradient stabilized method (BiCGSTAB) for sparse linear system solver.
Add: cudafy command line tool (translates and embeds CudafyModule in .NET assembly)
Add: cudafycl unit tests.
Fix: StringTests unit test did not run if CudafyModule was unchanged after Deserialize.
Fix: Struct methods that return void were not translated correctly, resulting in nvcc compile error.
Add: Deserialize CudafyModule from Stream.
Add: SuppressWindow property in CudafyModule (stops command windows showing)
Add: Embedded cudafy module support in CudafyModule and helper extensions for Assembly class.  
Add: Transparently handle checked/unchecked expressions - allows VB projects to run without Remove integer overflow  checks option being enabled.