History log of /external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
89cd0cd81ae829610fcbf4437597451ae5a59fe6 03-Jan-2018 Igor Ganichev <iga@google.com> Default to printing 3 elements in tf.assert_equals eager

Before this change, we defaulted to not printing any values, which is
different from behavior in graph execution.

closes #15766

PiperOrigin-RevId: 180609069
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
b8c1f29700d721ef4677dd5346155b62ecb95b7a 22-Dec-2017 Ian Langmore <langmore@google.com> assert_near added to check_ops.py

PiperOrigin-RevId: 179946066
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
b5dcb0161942c467be6cba19aa0ee05aef742d2e 21-Nov-2017 Igor Ganichev <iga@google.com> Make all assert_* ops work in eager mode

PiperOrigin-RevId: 176544038
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
361c55899cb524ca078c65eabdd3d79bfc10c8f9 09-Nov-2017 Igor Ganichev <iga@google.com> Make assert_equal/_none_equal/_less ops work in eager mode

Also, fix documentation of eager mode execute() method and
make tf_should_use work with empty list returned by execute()

RELNOTES: tf.assert_equal no longer raises ValueError. It now raises InvalidArgumentError, as documented.
PiperOrigin-RevId: 175086223
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
cfbeafe11d9b86f8685c1c0f97d285885b5a5f1f 26-Apr-2017 Eugene Brevdo <ebrevdo@google.com> Add eager (static) checking to assert_equal when constant values are available.

This raises errors during graph creation, when possible, instead of at runtime.
Change: 154304392
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
313c629560f76c4a849bf6710653fb339ab34a77 30-Mar-2017 Eugene Brevdo <ebrevdo@google.com> Move some asserts and other code from contrib.framework to core.
Change: 151657164
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
8043a27ed77f59bb68409070f2bfa01df0e04b89 02-Mar-2017 Ian Langmore <langmore@google.com> assert_none_equal added to check_ops
Change: 148952814
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
4a7233145c762253d3f0ada1750e8a02e33a29c3 21-Dec-2016 A. Unique TensorFlower <gardener@tensorflow.org> Add `assert_rank_in`, to handle cases where target ranks are a list, not an upper or lower bound.
Change: 142684404
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
5866e065bc95c1d7de8a27413b368016941889a6 15-Dec-2016 Justine Tunney <jart@google.com> Remove hourglass imports from kernel_tests
Change: 142080137
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
6d8b7f70c9fc1f4a36365248e0ab33733733eed9 02-Dec-2016 Eugene Brevdo <ebrevdo@google.com> Part 2a of renaming SparseTensor.shape -> SparseTensor.dense_shape
Change: 140892196
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
92052d14875ae0ab3daeacabcaa24e239d50f193 02-Sep-2016 A. Unique TensorFlower <gardener@tensorflow.org> Enable C++ shape function for math_ops.py and array_ops.cc shape functions that
don't require access to the input tensor values.
Change: 132071962
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
e11b99749d2898df0bce0269c77df316b059e8ea 01-Sep-2016 A. Unique TensorFlower <gardener@tensorflow.org> Automated rollback of change 131739513
Change: 131887027
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
a7fc9f53fa928e85b5d2b037efdc0e84f7a7b31d 30-Aug-2016 A. Unique TensorFlower <gardener@tensorflow.org> Enable C++ shape function for math_ops.py and array_ops.cc shape functions that
don't require access to the input constant tensor, and for which the C++
function's behavior matches python.

Fix rank check in C++ BatchMatMul shape function.
Fix rank check in C++ sparse cwise shape function.

Add an option on common_shapes.call_cpp_shape_fn to verify against the python
shape function. This is meant to be called only when preparing a change to
switch shape functions over.
Change: 131739513
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
bec216af11475002bd04ea93d6d858b55936d439 30-Aug-2016 Brian Williammee <bwill@google.com> check_ops for greater and greater_equal

These are not strictly necessary, as less and less_equal already exist, but they save callers from thinking about which comparisons are implemented, and could lead to greater readability in cases where the opposite comparison looks more natural.
Change: 131730721
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
b34cdec76b8000af781883000952cc407d72827c 28-Jul-2016 Ian Langmore <langmore@google.com> check_ops upgrade:
* message kwarg added to check_ops tests. This is a descriptive string to prefix
to the error message. tf.Print also takes a "message" kwarg with the same purpose.
* assert_integer now raises TypeErrors rather than ValueError
* assert_integer now checks statically and returns a no_op if static checks pass
Change: 128636001
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
0cf9ed3a719c0782695154d5a0bca260001cec15 02-Jun-2016 A. Unique TensorFlower <nobody@tensorflow.org> Update copyright for 3p/tf/python.
Change: 123900456
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
e753383886b84900e4dcfb5850ff8e1c14af1372 27-May-2016 A. Unique TensorFlower <nobody@tensorflow.org> Fix message in asssert_rank_at_least
Change: 123432496
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
7d04e09b7b2c63cd85960699af598b791ced13f4 24-May-2016 A. Unique TensorFlower <nobody@tensorflow.org> Add assert_proper_iterable to check_ops.py

Update style_guide.md section on preferred Tensor args.
Change: 123065402
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
32ef0e5e09f01b2b67af1694bcd9eb7055e0c564 23-May-2016 A. Unique TensorFlower <nobody@tensorflow.org> Check that the rank passed to assert_rank is a valid scalar.
Change: 123031829
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
5a2ec29b037a9ad6ef5b3a4fc1d98af08473f240 03-May-2016 A. Unique TensorFlower <nobody@tensorflow.org> Add assert_integer to check_ops.py.
Change: 121345288
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
055915e5a66ff674508227b4c41cb2c32e2b5f16 30-Apr-2016 A. Unique TensorFlower <nobody@tensorflow.org> Add assert_equal to check_ops.py. Also adding examples.
Change: 121171885
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py
c721550ad3c977ce138afc28431f022cf2ccb2d9 14-Apr-2016 A. Unique TensorFlower <nobody@tensorflow.org> Add ops/check_ops.py, which contains common asserts and is_* (a boolean check).
Change: 119894309
/external/tensorflow/tensorflow/python/kernel_tests/check_ops_test.py