Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/kernel_tests/
Dcheck_ops_test.py1464 self.assertFalse(self.evaluate(check_ops.is_strictly_increasing([1, 1, 1])))
1469 check_ops.is_strictly_increasing([1, 0, -1])))
1474 self.evaluate(check_ops.is_strictly_increasing([[1, 3], [2, 4]])))
1478 self.assertTrue(self.evaluate(check_ops.is_strictly_increasing([1, 2, 3])))
1483 self.evaluate(check_ops.is_strictly_increasing([[-1, 2], [3, 4]])))
1487 self.assertTrue(self.evaluate(check_ops.is_strictly_increasing([1])))
1491 self.assertTrue(self.evaluate(check_ops.is_strictly_increasing([])))
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.debugging.pbtxt116 name: "is_strictly_increasing"
Dtensorflow.math.pbtxt200 name: "is_strictly_increasing"
Dtensorflow.pbtxt1468 name: "is_strictly_increasing"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.math.pbtxt200 name: "is_strictly_increasing"
/external/tensorflow/tensorflow/python/ops/
Dcheck_ops.py1593 def is_strictly_increasing(x, name=None): function