Skip to content

Commit 48b18db

Browse files
Merge pull request tensorflow#60014 from tensorflow/disable-test-that-ooms
Disable a test that results in OOM+segfault
2 parents a632584 + eea48f5 commit 48b18db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)