pub struct Device { /* private fields */ }
Expand description

A device that may have a CUDA and/or OpenCL GPU associated with it.

Implementations

Returns the Vendor of the GPU.

Returns the name of the GPU, e.g. “GeForce RTX 3090”.

Returns the memory of the GPU in bytes.

Returns the number of compute units of the GPU.

Returns the major and minor version of the compute capability (only available on Nvidia GPUs).

Returns the best possible unique identifier, a UUID is preferred over a PCI ID.

Returns the preferred framework (CUDA or OpenCL) to use.

CUDA will be be preferred over OpenCL. The returned framework will work on the device. E.g. it won’t return Framework::Cuda for an AMD device.

Returns the underlying CUDA device if it is available.

Returns the underlying OpenCL device if it is available.

Returns all available GPUs that are supported.

Returns the device matching the PCI ID if there is one.

Returns the device matching the UUID if there is one.

Returns the device matching the unique ID if there is one.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.