You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should array-api-compat "update" the namespace for existing Array API arrays to the most recent spec? For example:
# Assume that `xp.take` is not implemented in the installed CuPy versionimportcupy.array_apiasxpimportarray_api_compatX=xp.asarray([1.0, 2.0])
xp=array_api_compat.get_namespace(X)
# Should this always be true?asserthasattr(xp, "take")