Description
Lines such as the below in corr are not array-api compatible as xp.arange(n) produces an integer dtype which is not allowed in __truediv__.
a = (2 * xp.arange(n) + 1) / (4 * xp.pi) * cl
Error message
TypeError: Only floating-point dtypes are allowed in __truediv__