aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/graph/types.h
blob: 41400611a958d4ea9ca0610820047596c51e5dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef TENSORFLOW_GRAPH_TYPES_H_
#define TENSORFLOW_GRAPH_TYPES_H_

#include "tensorflow/core/platform/port.h"
#include "tensorflow/core/lib/gtl/int_type.h"

namespace tensorflow {

// We model running time in microseconds.
TF_LIB_GTL_DEFINE_INT_TYPE(Microseconds, int64);

// We model size in bytes.
TF_LIB_GTL_DEFINE_INT_TYPE(Bytes, int64);

}  // namespace tensorflow

#endif  // TENSORFLOW_GRAPH_TYPES_H_