aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/zero_division_test.py
Commit message (Collapse)AuthorAge
* Remove hourglass imports from kernel_testsGravatar Justine Tunney2016-12-14
| | | | Change: 142080137
* To make the tests run both on GPU and CPU, when available, override use_gpu toGravatar Gunhan Gulsoy2016-09-09
| | | | | True in test_session. Change: 132750351
* Remove simple cases of use_gpu from tensorflow tests.Gravatar Gunhan Gulsoy2016-08-04
| | | | | Tests are already run on GPU and CPU separately. Change: 129393163
* Update copyright for 3p/tf/python.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900456
* Catch integer division by zero on CPU to avoid SIGFPEGravatar Geoffrey Irving2016-05-03
We let it through on GPU since the behavior is bizarre but harmless. On the CPU, we have to turn off packet math in Eigen and use a special binary functor that sets an error bit on division by zero. Ideally we'd be able to use packet math too; all it would take is a nice way for checking if a packet contains a zero. Fixes #2163. Change: 121429857