
Last chance! 50% off unlimited learning
Sale ends in
Floor_divide
torch_floor_divide(self, other)
(Tensor) the numerator tensor
(Tensor or Scalar) the denominator
Return the division of the inputs rounded down to the nearest integer. See torch_div
for type promotion and broadcasting rules.
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)
}
Run the code above in your browser using DataLab