aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/platform/default/integral_types.h
blob: 04aae172da994d29560964be64219a315067e195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef TENSORFLOW_PLATFORM_DEFAULT_INTEGRAL_TYPES_H_
#define TENSORFLOW_PLATFORM_DEFAULT_INTEGRAL_TYPES_H_

namespace tensorflow {

typedef signed char int8;
typedef short int16;
typedef int int32;
typedef long long int64;

typedef unsigned char uint8;
typedef unsigned short uint16;
typedef unsigned int uint32;
typedef unsigned long long uint64;

}  // namespace tensorflow

#endif  // TENSORFLOW_PLATFORM_DEFAULT_INTEGRAL_TYPES_H_