pub struct AcceleratorConfig {
pub accelerator_count: Option<i32>,
pub accelerator_type_uri: Option<String>,
}Expand description
Specifies the type and number of accelerator cards attached to the instances of an instance. See GPUs on Compute Engine (https://cloud.google.com/compute/docs/gpus/).
This type is not used in any activity, and only used as part of another schema.
Fields§
§accelerator_count: Option<i32>The number of the accelerator cards of this type exposed to this instance.
accelerator_type_uri: Option<String>Full URL, partial URI, or short name of the accelerator type resource to expose to this instance. See Compute Engine AcceleratorTypes (https://cloud.google.com/compute/docs/reference/v1/acceleratorTypes).Examples: https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone]/acceleratorTypes/nvidia-tesla-t4 projects/[project_id]/zones/[zone]/acceleratorTypes/nvidia-tesla-t4 nvidia-tesla-t4Auto Zone Exception: If you are using the Dataproc Auto Zone Placement (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the accelerator type resource, for example, nvidia-tesla-t4.
Trait Implementations§
Source§impl Clone for AcceleratorConfig
impl Clone for AcceleratorConfig
Source§fn clone(&self) -> AcceleratorConfig
fn clone(&self) -> AcceleratorConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more