Home
last modified time | relevance | path

Searched refs:is_strictly_increasing (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.debugging.pbtxt132 name: "is_strictly_increasing"
Dtensorflow.math.pbtxt220 name: "is_strictly_increasing"
Dtensorflow.pbtxt1532 name: "is_strictly_increasing"
/external/tensorflow/tensorflow/python/kernel_tests/
Dcheck_ops_test.py2086 self.assertFalse(self.evaluate(check_ops.is_strictly_increasing([1, 1, 1])))
2091 check_ops.is_strictly_increasing([1, 0, -1])))
2096 self.evaluate(check_ops.is_strictly_increasing([[1, 3], [2, 4]])))
2100 self.assertTrue(self.evaluate(check_ops.is_strictly_increasing([1, 2, 3])))
2105 self.evaluate(check_ops.is_strictly_increasing([[-1, 2], [3, 4]])))
2109 self.assertTrue(self.evaluate(check_ops.is_strictly_increasing([1])))
2113 self.assertTrue(self.evaluate(check_ops.is_strictly_increasing([])))
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.math.pbtxt220 name: "is_strictly_increasing"
/external/tensorflow/tensorflow/python/ops/
Dcheck_ops.py2046 def is_strictly_increasing(x, name=None): function