def testUint64Basic(self):
    x = np.arange(1, 13, 2).reshape(1, 3, 2).astype(np.uint32)
    y = np.arange(1, 7, 1).reshape(1, 3, 2).astype(np.uint32)
    self._compareBoth(x, y, np.true_divide, math_ops.truediv)
    self._compareBoth(x, y, np.floor_divide, math_ops.floordiv)