Module Values_1.GpuInfoSource

Describes the GPU accelerators for the instance type.

Sourcetype nonrec t = {
  1. gpus : GpuDeviceInfoList.t option;
    (*

    Describes the GPU accelerators for the instance type.

    *)
  2. totalGpuMemoryInMiB : TotalGpuMemory.t option;
    (*

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

    *)
}
Sourceval make : ?gpus:??? -> ?totalGpuMemoryInMiB:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TotalGpuMemory.t | `List of [> `Structure of (string * [> `Double of float | `Integer of int | `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Integer of int ]) list ]) list ] list ]) 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