aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/stateless_random_ops.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/kernels/stateless_random_ops.cc')
-rw-r--r--tensorflow/core/kernels/stateless_random_ops.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/tensorflow/core/kernels/stateless_random_ops.cc b/tensorflow/core/kernels/stateless_random_ops.cc
index 79d0c07acd..f6fb0a121d 100644
--- a/tensorflow/core/kernels/stateless_random_ops.cc
+++ b/tensorflow/core/kernels/stateless_random_ops.cc
@@ -137,7 +137,6 @@ TF_CALL_double(REGISTER);
.Device(DEVICE_GPU) \
.HostMemory("shape") \
.HostMemory("seed") \
- .TypeConstraint<int32>("T") \
.TypeConstraint<TYPE>("dtype"), \
StatelessRandomOp<GPUDevice, random::UniformDistribution< \
random::PhiloxRandom, TYPE> >); \
@@ -146,7 +145,6 @@ TF_CALL_double(REGISTER);
.Device(DEVICE_GPU) \
.HostMemory("shape") \
.HostMemory("seed") \
- .TypeConstraint<int32>("T") \
.TypeConstraint<TYPE>("dtype"), \
StatelessRandomOp<GPUDevice, random::NormalDistribution< \
random::PhiloxRandom, TYPE> >); \
@@ -155,7 +153,6 @@ TF_CALL_double(REGISTER);
.Device(DEVICE_GPU) \
.HostMemory("shape") \
.HostMemory("seed") \
- .TypeConstraint<int32>("T") \
.TypeConstraint<TYPE>("dtype"), \
StatelessRandomOp< \
GPUDevice, \