package tensorboard

  1. Overview
  2. Docs
No synopsis

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.0.1.tar.gz
md5=91035b4a9827fdf6e2fb61d0edb1bb2c
sha512=7f09994c0bb844429b795b971ae3bacd927eae4854a4efc36dbf8d6f4ea24e7f05f754f7191747e32b4fef1922589d1db8d2622147a1706efe7e79201329400b

doc/src/tensorboard.protobuf/resource_handle_types.ml.html

Source file resource_handle_types.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[@@@ocaml.warning "-27-30-39"]


type resource_handle_proto = {
  device : string;
  container : string;
  name : string;
  hash_code : int64;
  maybe_type_name : string;
}

let rec default_resource_handle_proto 
  ?device:((device:string) = "")
  ?container:((container:string) = "")
  ?name:((name:string) = "")
  ?hash_code:((hash_code:int64) = 0L)
  ?maybe_type_name:((maybe_type_name:string) = "")
  () : resource_handle_proto  = {
  device;
  container;
  name;
  hash_code;
  maybe_type_name;
}