XlogyΒΆ
Computes x * log(y).
Abstract Signature:
Xlogy(x: Tensor, y: Tensor)
NumPy
API:
scipy_special.xlogyStrategy: Macro 'np.where({x} == 0, 0, {x} * np.log({y}))'
Keras
API:
βStrategy: Custom / Partial
Apple MLX
API:
βStrategy: Macro '{x} * mlx.core.log({y})'