torch_lcm function

Lcm

Lcm

torch_lcm(self, other)

Arguments

  • self: (Tensor) the input tensor.
  • other: (Tensor) the second input tensor

Note

This defines lcm(0,0)=0lcm(0, 0) = 0 and lcm(0,a)=0lcm(0, a) = 0.

lcm(input, other, *, out=None) -> Tensor

Computes the element-wise least common multiple (LCM) of input and other.

Both input and other must have integer types.

Examples

if (torch_is_installed()) { if (torch::cuda_is_available()) { a <- torch_tensor(c(5, 10, 15), dtype = torch_long(), device = "cuda") b <- torch_tensor(c(3, 4, 5), dtype = torch_long(), device = "cuda") torch_lcm(a, b) c <- torch_tensor(c(3L), device = "cuda") torch_lcm(a, c) } }
  • Maintainer: Daniel Falbel
  • License: MIT + file LICENSE
  • Last published: 2025-02-14