Element-wise greatest common divisor for integer tensors.
Falls through to Python's math.gcd per element — the engine
has no native GCD kernel and this path is for low-rate utility use
(e.g. shape arithmetic), not hot-loop computation. Non-differentiable.
Parameters
Returns
TensorSame shape and dtype as x. Each element is
math.gcd(x_i, y_i).