Adding uint32 to the the supported infeed dtypes

PiperOrigin-RevId: 231617395
This commit is contained in:
Daryl Ng 2019-01-30 10:14:58 -08:00 committed by TensorFlower Gardener
parent 3599af7b15
commit 609992a3a0

View File

@ -157,7 +157,7 @@ if platform.system() != "Windows":
_SUPPORTED_INFEED_DTYPES = set([
dtypes.bool, dtypes.int32, dtypes.int64, dtypes.bfloat16, dtypes.float32,
dtypes.complex64
dtypes.complex64, dtypes.uint32
])
def infeed_dequeue(dtype, shape, name=None):