Skip to content

Commit eea48f5

Browse files
committed
Disable a test that results in OOM+segfault
Signed-off-by: Mihai Maruseac <mihaimaruseac@google.com>
1 parent a632584 commit eea48f5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tensorflow/python/ops/histogram_ops_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ def test_shape_inference(self):
176176
self.assertAllClose(expected_bin_counts, hist.eval({placeholder: 5}))
177177

178178

179-
def test_large_range(self):
179+
# This test is disabled on 2.11 as it OOMs + segfaults afterwards
180+
def DISABLED_test_large_range(self):
180181
hist = histogram_ops.histogram_fixed_width(
181182
values=constant_op.constant(
182183
[-(2**31), 2**31 - 1], dtype=dtypes.int32

0 commit comments

Comments
 (0)