cupy arrays are currently missing the matrix transpose property mT.
import array_api_compat.cupy as cp
import array_api_strict as xp
x = xp.asarray([[1, 2, 3], [4, 5, 6]])
x.mT # Works
x = cp.asarray([[1, 2, 3], [4, 5, 6]])
x.mT # Fails: AttributeError: 'ndarray' object has no attribute 'mT'. Did you mean: 'T'?