Module Values.GpuSource

Describes the GPU accelerators for the instance type.

Sourcetype nonrec t = {
  1. gpuCount : GpuCount.t option;
    (*

    The number of GPUs for the instance type.

    *)
  2. gpuMemorySizeInMiB : GpuMemorySizeInMiB.t option;
    (*

    The total size of the memory for the GPU accelerators for the instance type, in MiB.

    *)
}
Sourceval make : ?gpuCount:??? -> ?gpuMemorySizeInMiB:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of GpuCount.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t