aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/determinant_op_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/kernel_tests/determinant_op_test.py')
-rw-r--r--tensorflow/python/kernel_tests/determinant_op_test.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/tensorflow/python/kernel_tests/determinant_op_test.py b/tensorflow/python/kernel_tests/determinant_op_test.py
index a52b2c0dc3..fb114f9f24 100644
--- a/tensorflow/python/kernel_tests/determinant_op_test.py
+++ b/tensorflow/python/kernel_tests/determinant_op_test.py
@@ -28,6 +28,7 @@ from tensorflow.python.ops import gen_linalg_ops
from tensorflow.python.ops import linalg_ops
from tensorflow.python.ops import random_ops
from tensorflow.python.ops import variables
+from tensorflow.python.platform import benchmark
from tensorflow.python.platform import test
@@ -185,8 +186,8 @@ class MatrixDeterminantBenchmark(test.Benchmark):
def benchmarkMatrixDeterminantOp(self):
for shape in self.shapes:
- with ops.Graph().as_default(), session.Session() as sess, ops.device(
- "/cpu:0"):
+ with ops.Graph().as_default(), session.Session(
+ config=benchmark.benchmark_config()) as sess, ops.device("/cpu:0"):
matrix = self._GenerateMatrix(shape)
d = linalg_ops.matrix_determinant(matrix)
variables.global_variables_initializer().run()
@@ -198,8 +199,8 @@ class MatrixDeterminantBenchmark(test.Benchmark):
name="matrix_determinant_cpu_{shape}".format(shape=shape))
if test.is_gpu_available(True):
- with ops.Graph().as_default(), session.Session() as sess, ops.device(
- "/gpu:0"):
+ with ops.Graph().as_default(), session.Session(
+ config=benchmark.benchmark_config()) as sess, ops.device("/gpu:0"):
matrix = self._GenerateMatrix(shape)
d = linalg_ops.matrix_determinant(matrix)
variables.global_variables_initializer().run()