aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tf2xla
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-09-26 08:21:53 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-26 08:26:38 -0700
commit5498f24a3385bdd256b8b1e41329c5841996b26d (patch)
tree859fc7c8d48b75539d4f35194554cc1bcefe8e4e /tensorflow/compiler/tf2xla
parente45f7ee4182d5e831026f329cff5da2596d6733a (diff)
Changed FusedBatchNorm and FusedBatchNormGrad to use allowed_values for data_format attr.
PiperOrigin-RevId: 214608039
Diffstat (limited to 'tensorflow/compiler/tf2xla')
-rw-r--r--tensorflow/compiler/tf2xla/kernels/batch_norm_op.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/tensorflow/compiler/tf2xla/kernels/batch_norm_op.cc b/tensorflow/compiler/tf2xla/kernels/batch_norm_op.cc
index b3ad0aea84..a267c0c72f 100644
--- a/tensorflow/compiler/tf2xla/kernels/batch_norm_op.cc
+++ b/tensorflow/compiler/tf2xla/kernels/batch_norm_op.cc
@@ -34,12 +34,6 @@ class FusedBatchNormOp : public XlaOpKernel {
OP_REQUIRES(
ctx, FormatFromString(data_format_str, &data_format_),
errors::InvalidArgument("Invalid data format: ", data_format_str));
- OP_REQUIRES(ctx,
- (data_format_ == FORMAT_NHWC || data_format_ == FORMAT_NCHW ||
- data_format_ == FORMAT_HWNC || data_format_ == FORMAT_HWCN),
- errors::InvalidArgument(
- "Unsupported data format ", ToString(data_format_),
- "; supported formats are NHWC, NCHW, HWNC and HWCN"));
}
void Compile(XlaOpKernelContext* ctx) override {
@@ -110,12 +104,6 @@ class FusedBatchNormGradOp : public XlaOpKernel {
OP_REQUIRES(
ctx, FormatFromString(data_format_str, &data_format_),
errors::InvalidArgument("Invalid data format: ", data_format_str));
- OP_REQUIRES(ctx,
- (data_format_ == FORMAT_NHWC || data_format_ == FORMAT_NCHW ||
- data_format_ == FORMAT_HWNC || data_format_ == FORMAT_HWCN),
- errors::InvalidArgument(
- "Unsupported data format ", ToString(data_format_),
- "; supported formats are NHWC, NCHW, HWNC and HWCN"));
}
void Compile(XlaOpKernelContext* ctx) override {