aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/ops/histogram_ops_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/ops/histogram_ops_test.py')
-rw-r--r--tensorflow/python/ops/histogram_ops_test.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/python/ops/histogram_ops_test.py b/tensorflow/python/ops/histogram_ops_test.py
index e819e0234d..bf6e0296f6 100644
--- a/tensorflow/python/ops/histogram_ops_test.py
+++ b/tensorflow/python/ops/histogram_ops_test.py
@@ -36,7 +36,7 @@ class HistogramFixedWidthTest(test.TestCase):
value_range = [0.0, 5.0]
values = []
expected_bin_counts = [0, 0, 0, 0, 0]
- with self.test_session():
+ with self.test_session(use_gpu=True):
hist = histogram_ops.histogram_fixed_width(values, value_range, nbins=5)
self.assertEqual(dtypes.int32, hist.dtype)
self.assertAllClose(expected_bin_counts, hist.eval())
@@ -47,7 +47,7 @@ class HistogramFixedWidthTest(test.TestCase):
value_range = [0.0, 5.0]
values = [-1.0, 0.0, 1.5, 2.0, 5.0, 15]
expected_bin_counts = [2, 1, 1, 0, 2]
- with self.test_session():
+ with self.test_session(use_gpu=True):
hist = histogram_ops.histogram_fixed_width(
values, value_range, nbins=5, dtype=dtypes.int64)
self.assertEqual(dtypes.int64, hist.dtype)
@@ -59,7 +59,7 @@ class HistogramFixedWidthTest(test.TestCase):
value_range = np.float64([0.0, 5.0])
values = np.float64([-1.0, 0.0, 1.5, 2.0, 5.0, 15])
expected_bin_counts = [2, 1, 1, 0, 2]
- with self.test_session():
+ with self.test_session(use_gpu=True):
hist = histogram_ops.histogram_fixed_width(values, value_range, nbins=5)
self.assertEqual(dtypes.int32, hist.dtype)
self.assertAllClose(expected_bin_counts, hist.eval())
@@ -70,7 +70,7 @@ class HistogramFixedWidthTest(test.TestCase):
value_range = [0.0, 5.0]
values = [[-1.0, 0.0, 1.5], [2.0, 5.0, 15]]
expected_bin_counts = [2, 1, 1, 0, 2]
- with self.test_session():
+ with self.test_session(use_gpu=True):
hist = histogram_ops.histogram_fixed_width(values, value_range, nbins=5)
self.assertEqual(dtypes.int32, hist.dtype)
self.assertAllClose(expected_bin_counts, hist.eval())