package caisar

  1. Overview
  2. Docs

Operator Sets

OperatorSets are uniquely identified by a (domain, opset_version) pair.

type t = {
  1. domain : string option;
    (*

    The domain of the operator set being identified. The empty string ("") or absence of this field implies the operator set that is defined as part of the ONNX specification. This field MUST be present in this version of the IR when referring to any other operator set.

    *)
  2. version : int64 option;
    (*

    The version of the operator set being identified. This field MUST be present in this version of the IR.

    *)
}
val make : ?domain:string -> ?version:int64 -> unit -> t

Helper function to generate a message using default values

Serialize the message to binary format

Deserialize from binary format

Serialize to Json (compatible with Yojson.Basic.t)

Deserialize from Json (compatible with Yojson.Basic.t)

val name : unit -> string

Fully qualified protobuf name of this message

OCaml

Innovation. Community. Security.