Home
last modified time | relevance | path

Searched refs:truediv (Results 1 – 25 of 35) sorted by relevance

12

/external/tensorflow/tensorflow/python/kernel_tests/
Dbasic_gpu_test.py63 self._compareGPU(x, y + 0.1, np.true_divide, math_ops.truediv)
73 self._compareGPU(x, y + 0.1, np.true_divide, math_ops.truediv)
81 self._compareGPU(x, y + 0.1, np.true_divide, math_ops.truediv)
89 self._compareGPU(x, y + 0.1, np.true_divide, math_ops.truediv)
228 self._compareGradientX(x, y, np.true_divide, math_ops.truediv)
229 self._compareGradientY(x, y, np.true_divide, math_ops.truediv)
230 self._compareGpu(x, y, np.true_divide, math_ops.truediv)
Dcwise_ops_test.py659 self._compareBoth(x, y + 0.1, np.true_divide, math_ops.truediv)
723 self._compareBoth(x, y + 0.1, np.true_divide, math_ops.truediv)
770 self._compareBoth(x, y, np.true_divide, math_ops.truediv)
781 self._compareBoth(x, y, np.true_divide, math_ops.truediv)
799 self._compareBoth(x, y, np.true_divide, math_ops.truediv)
816 self._compareBoth(x, y + 0.1, np.true_divide, math_ops.truediv)
830 self._compareBoth(x, y + 0.1, np.true_divide, math_ops.truediv)
930 (np.true_divide, math_ops.truediv),
/external/tensorflow/tensorflow/python/training/
Dmoving_averages.py95 truediv=True, argument
150 if truediv:
151 return math_ops.truediv(numerator, denominator, name=scope.name)
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestmagicmethods.py133 def truediv(self, other): function
136 mock.__truediv__ = truediv
144 mock.__itruediv__ = truediv
150 mock.__rtruediv__ = truediv
/external/tensorflow/tensorflow/contrib/metrics/python/ops/
Dhistogram_ops.py200 normed_hist_true = math_ops.truediv(hist_true_acc,
202 normed_hist_false = math_ops.truediv(hist_false_acc,
Dmetric_ops.py61 math_ops.truediv(numerator, denominator),
1102 x_axis_values = math_ops.truediv(false_positives, total_negative)
1103 y_axis_values = math_ops.truediv(true_positives, total_positive)
1105 x_axis_values = math_ops.truediv(true_positives, total_positive)
1109 math_ops.greater(splits, 0), math_ops.truediv(true_positives, splits),
3067 math_ops.truediv(comoment, count_ - 1),
3073 math_ops.truediv(comoment, count_ - 1),
3151 pearson_r = math_ops.truediv(
3156 update_op = math_ops.truediv(
/external/python/cpython2/Lib/test/
Dtest_long_future.py24 def truediv(a, b): function
108 expected = repr(truediv(a, b))
Dtest_operator.py161 self.assertRaises(TypeError, operator.truediv, 5)
162 self.assertRaises(TypeError, operator.truediv, None, None)
163 self.assertTrue(operator.truediv(5, 2) == 2.5)
/external/python/cpython3/Lib/
Doperator.py136 def truediv(a, b): function
444 __truediv__ = truediv
Dfractions.py428 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
/external/tensorflow/tensorflow/python/ops/
Dhistogram_ops.py89 scaled_values = math_ops.truediv(
/external/tensorflow/tensorflow/contrib/data/python/ops/
Dresampling.py184 init_prob_estimate = math_ops.truediv(
/external/libmojo/third_party/jinja2/
Dsandbox.py199 '/': operator.truediv,
Dnodes.py29 '/': operator.truediv,
/external/python/cpython3/Lib/test/
Dtest_operator.py164 self.assertRaises(TypeError, operator.truediv, 5)
165 self.assertRaises(TypeError, operator.truediv, None, None)
166 self.assertEqual(operator.truediv(5, 2), 2.5)
Dtest_long.py85 def truediv(a, b): function
801 expected = repr(truediv(a, b))
/external/tensorflow/tensorflow/contrib/training/python/training/
Dsampling_ops.py290 init_prob_estimate = math_ops.truediv(
/external/tensorflow/tensorflow/docs_src/api_guides/python/
Dmath_ops.md22 * @{tf.truediv}
/external/tensorflow/tensorflow/contrib/losses/python/metric_learning/
Dmetric_loss_ops.py234 triplet_loss = math_ops.truediv(
487 lifted_loss = math_ops.truediv(
/external/tensorflow/tensorflow/python/framework/testdata/
Dmetrics_export_meta_graph.pb1327 name: "mean/truediv"
1383 input: "mean/truediv"
/external/python/cpython3/Doc/library/
Doperator.rst185 .. function:: truediv(a, b)
372 | Division | ``a / b`` | ``truediv(a, b)`` |
/external/python/cpython2/Lib/
Dfractions.py414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
/external/python/cpython2/Doc/library/
Doperator.rst195 .. function:: truediv(a, b)
627 | Division | ``a / b`` | ``truediv(a, b)`` (with |
/external/tensorflow/tensorflow/contrib/model_pruning/python/
Dpruning.py179 scaled_values = math_ops.truediv(
/external/python/cpython2/Modules/
Doperator.c393 spam2(truediv,__truediv__, "truediv(a, b) -- Same as a / b when __future__.division is in effect.")

12