torch_floor_divide function

Floor_divide

Floor_divide

torch_floor_divide(self, other)

Arguments

  • self: (Tensor) the numerator tensor
  • other: (Tensor or Scalar) the denominator

floor_divide(input, other, out=NULL) -> Tensor

Return the division of the inputs rounded down to the nearest integer. See torch_div

for type promotion and broadcasting rules.

\mboxouti=\mboxinputi\mboxotheri \mbox{{out}}_i = \left\lfloor \frac{{\mbox{{input}}_i}}{{\mbox{{other}}_i}} \right\rfloor

Examples

if (torch_is_installed()) { a = torch_tensor(c(4.0, 3.0)) b = torch_tensor(c(2.0, 2.0)) torch_floor_divide(a, b) torch_floor_divide(a, 1.4) }
  • Maintainer: Daniel Falbel
  • License: MIT + file LICENSE
  • Last published: 2025-02-14