package tensorboard

  1. Overview
  2. Docs

Source file types_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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[@@@ocaml.warning "-27-30-39"]


type data_type =
  | Dt_invalid 
  | Dt_float 
  | Dt_double 
  | Dt_int32 
  | Dt_uint8 
  | Dt_int16 
  | Dt_int8 
  | Dt_string 
  | Dt_complex64 
  | Dt_int64 
  | Dt_bool 
  | Dt_qint8 
  | Dt_quint8 
  | Dt_qint32 
  | Dt_bfloat16 
  | Dt_qint16 
  | Dt_quint16 
  | Dt_uint16 
  | Dt_complex128 
  | Dt_half 
  | Dt_resource 
  | Dt_variant 
  | Dt_uint32 
  | Dt_uint64 
  | Dt_float_ref 
  | Dt_double_ref 
  | Dt_int32_ref 
  | Dt_uint8_ref 
  | Dt_int16_ref 
  | Dt_int8_ref 
  | Dt_string_ref 
  | Dt_complex64_ref 
  | Dt_int64_ref 
  | Dt_bool_ref 
  | Dt_qint8_ref 
  | Dt_quint8_ref 
  | Dt_qint32_ref 
  | Dt_bfloat16_ref 
  | Dt_qint16_ref 
  | Dt_quint16_ref 
  | Dt_uint16_ref 
  | Dt_complex128_ref 
  | Dt_half_ref 
  | Dt_resource_ref 
  | Dt_variant_ref 
  | Dt_uint32_ref 
  | Dt_uint64_ref 

let rec default_data_type () = (Dt_invalid:data_type)