/external/tensorflow/tensorflow/python/kernel_tests/ |
D | basic_gpu_test.py | 63 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)
|
D | cwise_ops_binary_test.py | 206 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/ |
D | ragged_operators.py | 67 ragged_tensor.RaggedTensor.__truediv__ = math_ops.truediv 68 ragged_tensor.RaggedTensor.__rtruediv__ = _right(math_ops.truediv)
|
D | ragged_dispatch.py | 386 math_ops.truediv,
|
D | ragged_dispatch_test.py | 117 math_ops.truediv,
|
/external/tensorflow/tensorflow/python/training/ |
D | moving_averages.py | 112 truediv=True, argument 167 if truediv: 168 return math_ops.truediv(numerator, denominator, name=scope.name)
|
/external/tensorflow/tensorflow/c/ |
D | c_api_experimental.cc | 3067 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/ |
D | histogram_ops.py | 200 normed_hist_true = math_ops.truediv(hist_true_acc, 202 normed_hist_false = math_ops.truediv(hist_false_acc,
|
D | metric_ops.py | 1120 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/ |
D | test_long_future.py | 24 def truediv(a, b): function 108 expected = repr(truediv(a, b))
|
D | test_operator.py | 161 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/ |
D | testmagicmethods.py | 133 def truediv(self, other): function 136 mock.__truediv__ = truediv 144 mock.__itruediv__ = truediv 150 mock.__rtruediv__ = truediv
|
/external/python/mock/mock/tests/ |
D | testmagicmethods.py | 161 def truediv(self, other): function 164 mock.__truediv__ = truediv 173 mock.__itruediv__ = truediv 181 mock.__rtruediv__ = truediv
|
/external/tensorflow/tensorflow/python/ops/ |
D | histogram_ops.py | 83 scaled_values = math_ops.truediv(
|
/external/python/cpython3/Lib/ |
D | operator.py | 136 def truediv(a, b): function 444 __truediv__ = truediv
|
D | fractions.py | 428 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
|
/external/tensorflow/tensorflow/python/data/experimental/ops/ |
D | resampling.py | 214 init_prob_estimate = math_ops.truediv(
|
/external/python/cpython3/Lib/test/ |
D | test_operator.py | 164 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/ |
D | sampling_ops.py | 291 init_prob_estimate = math_ops.truediv(
|
/external/libchrome/third_party/jinja2/ |
D | sandbox.py | 254 '/': operator.truediv,
|
/external/tensorflow/tensorflow/contrib/losses/python/metric_learning/ |
D | metric_loss_ops.py | 232 triplet_loss = math_ops.truediv( 487 lifted_loss = math_ops.truediv(
|
/external/tensorflow/tensorflow/python/framework/testdata/ |
D | metrics_export_meta_graph.pb | 1327 name: "mean/truediv" 1383 input: "mean/truediv"
|
/external/python/cpython3/Doc/library/ |
D | operator.rst | 186 .. function:: truediv(a, b) 376 | Division | ``a / b`` | ``truediv(a, b)`` |
|
/external/python/cpython2/Lib/ |
D | fractions.py | 414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
|
/external/python/cpython2/Doc/library/ |
D | operator.rst | 195 .. function:: truediv(a, b) 627 | Division | ``a / b`` | ``truediv(a, b)`` (with |
|