Skip to content

Commit

Permalink
Skip conv2d subtest for Rocm6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hsharsha committed Sep 10, 2024
1 parent d7d242f commit 94b31ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/compiler/tests/conv2d_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ def testConv2D2x2FilterStride2Same(self, data_format):
def testConv2D2x2Depth3ValidBackpropInputStride1x1Dilation2x1(
self, data_format):
if test.is_built_with_rocm():
self.skipTest('only ROCm 6.2 will skip this subtest')
self.skipTest('ROCm 6.2/6.3 will skip this subtest')
self._VerifyValues(
input_sizes=[1, 3, 6, 1],
filter_sizes=[2, 2, 1, 1],
Expand Down Expand Up @@ -604,7 +604,7 @@ def testConv2D2x2Depth3ValidBackpropInputDilation2x1(self, data_format):
def testConv2DKernelSizeMatchesInputSizeBackpropInputDilation2x2(
self, data_format):
if test.is_built_with_rocm():
self.skipTest('only ROCm 6.2 will skip this subtest')
self.skipTest('only ROCm 6.2 will skip this subtest')
self._VerifyValues(
input_sizes=[1, 3, 3, 1],
filter_sizes=[2, 2, 1, 2],
Expand Down

0 comments on commit 94b31ff

Please sign in to comment.