Gets the device properties.

Namespace: Cudafy.Host
Assembly: Cudafy.Host (in Cudafy.Host.dll) Version: 1.0.4106.20172

Syntax

C#
public static IEnumerable<GPGPUProperties> GetDeviceProperties(
	eGPUType type,
	bool useAdvanced
)
Visual Basic
Public Shared Function GetDeviceProperties ( _
	type As eGPUType, _
	useAdvanced As Boolean _
) As IEnumerable(Of GPGPUProperties)
Visual C++
public:
static IEnumerable<GPGPUProperties^>^ GetDeviceProperties(
	eGPUType type, 
	bool useAdvanced
)

Parameters

type
Type: Cudafy..::..eGPUType
The type of GPU.
useAdvanced
Type: System..::..Boolean
Whether to get the additional device settings via the cudart dll.

Return Value

Device properties for all devices of the specified type.

See Also