DriverType Class

public final class DriverType
extends ExpandableStringEnum<DriverType>

Specify the type of GPU driver to install when creating Windows agent pools. If not provided, AKS selects the driver based on system compatibility. This cannot be changed once the AgentPool has been created. This cannot be set on Linux AgentPools. For Linux AgentPools, the driver is selected based on system compatibility.

Field Summary

Modifier and Type Field and Description
static final DriverType CUDA

Install the CUDA driver for the GPU, optimized for computational tasks in scientific computing and data-intensive applications.

static final DriverType GRID

Install the GRID driver for the GPU, suitable for applications requiring virtualization support.

Constructor Summary

Constructor Description
DriverType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of DriverType value.

Method Summary

Modifier and Type Method and Description
static DriverType fromString(String name)

Creates or finds a DriverType from its string representation.

static Collection<DriverType> values()

Gets known DriverType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

CUDA

public static final DriverType CUDA

Install the CUDA driver for the GPU, optimized for computational tasks in scientific computing and data-intensive applications.

GRID

public static final DriverType GRID

Install the GRID driver for the GPU, suitable for applications requiring virtualization support.

Constructor Details

DriverType

@Deprecated
public DriverType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of DriverType value.

Method Details

fromString

public static DriverType fromString(String name)

Creates or finds a DriverType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding DriverType.

values

public static Collection<DriverType> values()

Gets known DriverType values.

Returns:

known DriverType values.

Applies to