TRUE_divide
TRUE_divide
torch_true_divide(self, other)
self |
(Tensor) the dividend |
other |
(Tensor or Scalar) the divisor |
Performs "true division" that always computes the division
in floating point. Analogous to division in Python 3 and equivalent to
torch_div
except when both inputs have bool or integer scalar types,
in which case they are cast to the default (floating) scalar type before the division.
\mbox{out}_i = \frac{\mbox{dividend}_i}{\mbox{divisor}}
if (torch_is_installed()) { dividend = torch_tensor(c(5, 3), dtype=torch_int()) divisor = torch_tensor(c(3, 2), dtype=torch_int()) torch_true_divide(dividend, divisor) torch_true_divide(dividend, 2) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.