Home
last modified time | relevance | path

Searched refs:truediv (Results 1 – 25 of 39) 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)
230 self._compareGradientX(x, y, np.true_divide, math_ops.truediv)
231 self._compareGradientY(x, y, np.true_divide, math_ops.truediv)
232 self._compareGpu(x, y, np.true_divide, math_ops.truediv)
Dcwise_ops_binary_test.py206 self._compareBoth(x, y + 0.1, np.true_divide, math_ops.truediv)
274 self._compareBoth(x, y + 0.1, np.true_divide, math_ops.truediv)
321 self._compareBoth(x, y, np.true_divide, math_ops.truediv)
332 self._compareBoth(x, y, np.true_divide, math_ops.truediv)
350 self._compareBoth(x, y, np.true_divide, math_ops.truediv)
368 self._compareBoth(x, y + 0.1, np.true_divide, math_ops.truediv)
383 self._compareBoth(x, y + 0.1, np.true_divide, math_ops.truediv)
481 (np.true_divide, math_ops.truediv),
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_operators.py67 ragged_tensor.RaggedTensor.__truediv__ = math_ops.truediv
68 ragged_tensor.RaggedTensor.__rtruediv__ = _right(math_ops.truediv)
Dragged_dispatch.py386 math_ops.truediv,
Dragged_dispatch_test.py117 math_ops.truediv,
/external/tensorflow/tensorflow/python/training/
Dmoving_averages.py112 truediv=True, argument
167 if truediv:
168 return math_ops.truediv(numerator, denominator, name=scope.name)
/external/tensorflow/tensorflow/c/
Dc_api_experimental.cc3067 name: "cond/cond/truediv" in CreateImagenetDatasetFunctions()
3103 input: "cond/cond/truediv:z:0" in CreateImagenetDatasetFunctions()
4091 name: "cond/truediv/y" in CreateImagenetDatasetFunctions()
4113 name: "cond/truediv/Cast" in CreateImagenetDatasetFunctions()
4130 name: "cond/truediv/Cast_1" in CreateImagenetDatasetFunctions()
4132 input: "cond/truediv/y:output:0" in CreateImagenetDatasetFunctions()
4147 name: "cond/truediv" in CreateImagenetDatasetFunctions()
4149 input: "cond/truediv/Cast:y:0" in CreateImagenetDatasetFunctions()
4150 input: "cond/truediv/Cast_1:y:0" in CreateImagenetDatasetFunctions()
5043 input: "cond/truediv:z:0" in CreateImagenetDatasetFunctions()
[all …]
/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.py1120 x_axis_values = math_ops.truediv(false_positives, total_negative)
1121 y_axis_values = math_ops.truediv(true_positives, total_positive)
1123 x_axis_values = math_ops.truediv(true_positives, total_positive)
1131 math_ops.truediv(true_positives, positives),
3262 math_ops.truediv(comoment, count_ - 1),
3268 math_ops.truediv(comoment, count_ - 1),
3346 pearson_r = math_ops.truediv(
3351 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/unittest/test/testmock/
Dtestmagicmethods.py133 def truediv(self, other): function
136 mock.__truediv__ = truediv
144 mock.__itruediv__ = truediv
150 mock.__rtruediv__ = truediv
/external/python/mock/mock/tests/
Dtestmagicmethods.py161 def truediv(self, other): function
164 mock.__truediv__ = truediv
173 mock.__itruediv__ = truediv
181 mock.__rtruediv__ = truediv
/external/tensorflow/tensorflow/python/ops/
Dhistogram_ops.py83 scaled_values = math_ops.truediv(
/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/data/experimental/ops/
Dresampling.py214 init_prob_estimate = math_ops.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)
/external/tensorflow/tensorflow/contrib/training/python/training/
Dsampling_ops.py291 init_prob_estimate = math_ops.truediv(
/external/libchrome/third_party/jinja2/
Dsandbox.py254 '/': operator.truediv,
/external/tensorflow/tensorflow/contrib/losses/python/metric_learning/
Dmetric_loss_ops.py232 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.rst186 .. function:: truediv(a, b)
376 | 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 |

12