Module Values_0.NeuronDeviceInfoSource

Describes the neuron accelerators for the instance type.

Sourcetype nonrec t = {
  1. count : NeuronDeviceCount.t option;
    (*

    The number of neuron accelerators for the instance type.

    *)
  2. name : NeuronDeviceName.t option;
    (*

    The name of the neuron accelerator.

    *)
  3. coreInfo : NeuronDeviceCoreInfo.t option;
    (*

    Describes the cores available to each neuron accelerator.

    *)
  4. memoryInfo : NeuronDeviceMemoryInfo.t option;
    (*

    Describes the memory available to each neuron accelerator.

    *)
}
Sourceval make : ?count:??? -> ?name:??? -> ?coreInfo:??? -> ?memoryInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NeuronDeviceCount.t | `String of NeuronDeviceName.t | `Structure of (string * [> `Integer of NeuronDeviceCoreCount.t ]) 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