aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/pack_op.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-12-12 11:33:37 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-12 11:44:02 -0800
commit573d8ca0f0ceae9706958b34d758420d05a4908b (patch)
tree4986cba916722c297523086b1d5bc5a2d5a5a53b /tensorflow/core/kernels/pack_op.cc
parent2e47277508188d8781184806cee39c6deaa3e95e (diff)
Registers resource handles by default for most kernels.
Change: 141789667
Diffstat (limited to 'tensorflow/core/kernels/pack_op.cc')
-rw-r--r--tensorflow/core/kernels/pack_op.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/kernels/pack_op.cc b/tensorflow/core/kernels/pack_op.cc
index e072eb36b3..79cddbbf69 100644
--- a/tensorflow/core/kernels/pack_op.cc
+++ b/tensorflow/core/kernels/pack_op.cc
@@ -128,7 +128,7 @@ class PackOp : public OpKernel {
Name("Pack").Device(DEVICE_CPU).TypeConstraint<type>("T"), \
PackOp<CPUDevice, type>)
-TF_CALL_ALL_TYPES(REGISTER_PACK);
+TF_CALL_POD_STRING_TYPES(REGISTER_PACK);
TF_CALL_QUANTIZED_TYPES(REGISTER_PACK);
TF_CALL_bfloat16(REGISTER_PACK);