aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/layers/convolutional_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/layers/convolutional_test.py')
-rw-r--r--tensorflow/python/layers/convolutional_test.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tensorflow/python/layers/convolutional_test.py b/tensorflow/python/layers/convolutional_test.py
index 160e732b67..cdb42f5bd1 100644
--- a/tensorflow/python/layers/convolutional_test.py
+++ b/tensorflow/python/layers/convolutional_test.py
@@ -325,6 +325,12 @@ class ConvTest(test.TestCase):
self.assertEqual(conv3d.kernel_constraint, k_constraint)
self.assertEqual(conv3d.bias_constraint, b_constraint)
+ def testConv3DChannelsFirst(self):
+ # Test case for GitHub issue 15655
+ images = array_ops.placeholder(
+ dtype=dtypes.float32, shape=[None, 1, 32, 32, 32])
+ conv_layers.conv3d(images, 32, 9, data_format='channels_first')
+
@test_util.with_c_api
class SeparableConv1DTest(test.TestCase):