Skip to content

Add "multi device" support #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Oct 16, 2024
Merged

Conversation

betatim
Copy link
Member

@betatim betatim commented Sep 4, 2024

Having more than one device is useful during testing to allow you to find bugs related to how arrays on different devices are handled. Closes #56

With scikit-learn we run into the frustrating situation were contributors execute tests locally, they all pass but then see failures on the CI related to the fact that e.g. PyTorch has several devices and some things work on the CPU device but not on the CUDA/MPS device. However, if you have neither of those on your local machine you can't really test this upfront and to debug it you need to rely on the CI.

The idea of this PR is to add support for multiple devices to array-api-strict to make testing easier. The default device continues to be the CPU device and for arrays that use it nothing should change. However, you can now place an array on a different device with array_api_strict.Device("pony") (or some other string, each string is a new device). For arrays on a device that isn't the CPU device calls like np.asarray(some_strict_array) will raise an error. This mirrors how PyTorch treats arrays on the CPU and MPS device.

What isn't yet implemented in this PR is raising an error if you try to operate on arrays that are not on the same device.

I wanted to open this PR already now after just a short amount of effort to get feedback what people think about this before putting in the time to update all the tests, etc.

Having more than one device is useful during testing to allow you to
find bugs related to how arrays on different devices are handled.
@lucascolley
Copy link
Member

+1! Another question is what the default should be (technically Device("pony") is more strict), but probably better if we can keep the cpu default for backwards compatibility.

@betatim
Copy link
Member Author

betatim commented Sep 6, 2024

I think the CPU device should be the default. That way code that exists today should keep working and the only people who notice any changes are those who use the pony device.

@asmeurer
Copy link
Member

asmeurer commented Sep 7, 2024

This looks good so far. We need to make sure the semantics specified at https://data-apis.org/array-api/latest/design_topics/device_support.html#semantics are followed, namely, disallowing combining arrays from different devices, and making sure that if a function creates a new array based on an existing array that it uses the same device.

For tests, ideally this would be tested in array-api-tests, but right now device support is not tested at all there. If you just want to add some basic tests here for now, that is fien.

Finally, there is the devices inspection API. https://data-apis.org/array-api/latest/API_specification/generated/array_api.info.devices.html#array_api.info.devices We need to think about how that will work. One option would just be to create a small but fixed number of devices. Or we could add some flags to make it configurable https://data-apis.org/array-api-strict/api.html#array_api_strict.set_array_api_strict_flags

@betatim
Copy link
Member Author

betatim commented Sep 27, 2024

I've rebooted my work. The long pause is because I went on holiday :D

I think we have to limit ourselves to a fixed number of devices, otherwise we can't full fill the requirement that the info extension can provide a list of devices. So now you can use the CPU_DEVICE and the (creatively named) device1 and device2.

Slowly making progress towards the creation functions and "array combination" functions respecting the device

@betatim
Copy link
Member Author

betatim commented Sep 27, 2024

Do you use ruff or black or something like that for formatting?

@betatim
Copy link
Member Author

betatim commented Sep 27, 2024

It looks like it would be quite tricky to add device testing to array-api-tests. At least at my level of knowledge (unfamiliar with hypothesis and array-api-tests). It looks like you'd add a helper, maybe all_devices, similar to all_dtypes and then use it in the @given decorator. The tricky thing is that how to specify a device depends on the library, in a new version of the standard you could use the inspection API to get all devices. So yeah, for now I might add some basic testing here.

@asmeurer
Copy link
Member

Do you use ruff or black or something like that for formatting?

There's no autoformatting on this repo.

It looks like it would be quite tricky to add device testing to array-api-tests. At least at my level of knowledge (unfamiliar with hypothesis and array-api-tests). It looks like you'd add a helper, maybe all_devices, similar to all_dtypes and then use it in the @given decorator. The tricky thing is that how to specify a device depends on the library, in a new version of the standard you could use the inspection API to get all devices. So yeah, for now I might add some basic testing here.

I think it would have to use the devices() function in the inspection API. That would mean that the tests would only work against the newest version of the standard and it would only work against the compat library, but I think that's fine. You'd also probably want to make it optional.

It's also possible to do some basic testing using the default device, like that x.device and device= are consistent.

The annoying thing for the test suite is making sure every function everywhere is passing device through properly so that everything gets created on the same device. It would also probably require some upstream fixes to the hypothesis array-api support.

@asmeurer
Copy link
Member

I think what we need here are just some big parameterized tests combining basic example arrays with different devices across all the APIs. For instance, there's an existing test that checks type promotion and the "no mixing devices" test could look very similar to that.



def logaddexp(x1: Array, x2: Array) -> Array:
def logaddexp(x1: Array, x2: Array, /) -> Array:
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this was missing/typo.

@@ -19,8 +19,16 @@

import pytest

import array_api_strict


def nargs(func):
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I modified this so that it works with decorated/wrapped functions as well. len(getfullargspec(f).args) returns zero for functions that are decorated with the array API version decorator. From what I can tell from the Python docs this is kind of on purpose/to preserve existing behaviour. signature() does the right thing for wrapped functions, but it needs slightly more explicit work to count the arguments.

I think the intention/rule is that nargs() counts the number of positional only arguments, which is basically the "number of arrays you need to pass to a elementwise function". I went with the very explicit way of counting the args partially as a way to make it easier for people from the future to understand what nargs is meant to do (even if it contains a bug and doesn't actually do what it is meant to do).

@@ -91,12 +99,57 @@ def nargs(func):
"trunc": "real numeric",
}


def test_nargs():
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A short test to make sure nargs works but also that all of the functions that we look at have "the right signature" - I found logaddexp was missing that trailing / when working on nargs. So it seems useful to have a "all functions have a reasonable number of arguments" test.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's good. The array-api test suite doesn't check for positional-only, though it probably could now that it uses inspect.signature.

@betatim
Copy link
Member Author

betatim commented Oct 8, 2024

Does someone know more about the failure? It looks like it is not to do with the actual code but with computing the expected shape and that overflowing because the array is of dtype int8. How do we fix that?

@asmeurer
Copy link
Member

asmeurer commented Oct 9, 2024

Sorry, that is from a new test that I added in the test suite. I guess I didn't catch all the corner cases. You can ignore it for now.

@betatim
Copy link
Member Author

betatim commented Oct 9, 2024

In that case, I think, this is ready?!

I tried to modify all the functions that return an array to take into account the device of the input. For some I've added tests that check this, but I think really array-api-tests should be doing this (check input and output device are consistent). SO maybe adding tests for all functions is not needed.

@@ -309,6 +309,9 @@

__all__ += ["all", "any"]

from ._array_object import Device
__all__ += ["Device"]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd rather not add this to the __init__.py since it isn't part of the array API. If it is necessary to have some public APIs to create device objects we should make APIs that are more obviously array-api-strict specific (similar to the flags APIs).

@@ -625,19 +661,21 @@ def __getitem__(
"""
Performs the operation __getitem__.
"""
# XXX Does key have to be on the same device? Is there an exception for CPU_DEVICE?
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this is underspecified. I would need to test what PyTorch and others do, but I would suspect that an implicit cross-device array key is not something that's intended to be supported, since that still would require an implicit device transfer.

@@ -121,7 +121,7 @@ def __hash__(self):
"integer": _integer_dtypes,
"integer or boolean": _integer_or_boolean_dtypes,
"boolean": _boolean_dtypes,
"real floating-point": _floating_dtypes,
"real floating-point": _real_floating_dtypes,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. Is this covered by one of the new tests?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not explicitly. I found this because a test was failing, looked into this and found it. But also it is too long ago for me to remember what exactly it was :-/

@asmeurer
Copy link
Member

asmeurer commented Oct 14, 2024

It's hard to tell just from the diff if you missed anything. Here are all the places in the code that call _new without a device keyword

$ git grep -n '_new(' | grep -v 'device'
array_api_strict/_array_object.py:278:        return Array._new(np.array(scalar, dtype=self.dtype._np_dtype))
array_api_strict/_array_object.py:310:            x1 = Array._new(x1._array[None])
array_api_strict/_array_object.py:312:            x2 = Array._new(x2._array[None])
array_api_strict/_array_object.py:496:        return self.__class__._new(res)
array_api_strict/_array_object.py:684:        return self.__class__._new(res)
array_api_strict/_array_object.py:1030:        return self.__class__._new(res)
array_api_strict/_array_object.py:1042:        return self.__class__._new(res)
array_api_strict/_array_object.py:1063:        return self.__class__._new(res)
array_api_strict/_array_object.py:1084:        return self.__class__._new(res)
array_api_strict/_array_object.py:1105:        return self.__class__._new(res)
array_api_strict/_array_object.py:1149:        return self.__class__._new(res)
array_api_strict/_array_object.py:1170:        return self.__class__._new(res)
array_api_strict/_array_object.py:1191:        return self.__class__._new(res)
array_api_strict/_array_object.py:1212:        return self.__class__._new(res)
array_api_strict/_array_object.py:1282:        return self.__class__._new(self._array.T)
array_api_strict/_creation_functions.py:82:                return Array._new(new_array)
array_api_strict/_creation_functions.py:214:    return Array._new(np.from_dlpack(x))
array_api_strict/_data_type_functions.py:57:        Array._new(array) for array in np.broadcast_arrays(*[a._array for a in arrays])
array_api_strict/_data_type_functions.py:69:    return Array._new(np.broadcast_to(x._array, shape))
array_api_strict/_linalg.py:62:        U = Array._new(L).mT
array_api_strict/_linalg.py:66:    return Array._new(L)
array_api_strict/_linalg.py:94:    return Array._new(np.cross(x1._array, x2._array, axis=axis))
array_api_strict/_linalg.py:107:    return Array._new(np.linalg.det(x._array))
array_api_strict/_linalg.py:119:    return Array._new(np.diagonal(x._array, offset=offset, axis1=-2, axis2=-1))
array_api_strict/_linalg.py:150:    return Array._new(np.linalg.eigvalsh(x._array))
array_api_strict/_linalg.py:164:    return Array._new(np.linalg.inv(x._array))
array_api_strict/_linalg.py:184:    return Array._new(np.linalg.norm(x._array, axis=(-2, -1), keepdims=keepdims, ord=ord))
array_api_strict/_linalg.py:200:    return Array._new(np.linalg.matrix_power(x._array, n))
array_api_strict/_linalg.py:223:    return Array._new(np.count_nonzero(S > tol, axis=-1))
array_api_strict/_linalg.py:243:    return Array._new(np.outer(x1._array, x2._array))
array_api_strict/_linalg.py:262:    return Array._new(np.linalg.pinv(x._array, rcond=rtol))
array_api_strict/_linalg.py:351:    return Array._new(_solve(x1._array, x2._array))
array_api_strict/_linalg.py:375:    return Array._new(np.linalg.svd(x._array, compute_uv=False))
array_api_strict/_linalg.py:400:    return Array._new(np.asarray(np.trace(x._array, offset=offset, axis1=-2, axis2=-1, dtype=dtype)))
array_api_strict/_linalg.py:440:    res = Array._new(np.linalg.norm(a, axis=_axis, ord=ord))
array_api_strict/_searching_functions.py:46:    return tuple(Array._new(i) for i in np.nonzero(x._array))

So it would be worth double checking all of those.

@asmeurer
Copy link
Member

As you mentioned, we should indeed be testing most of this in the test suite. However, I'm not really sure how soon that will happen. There's quite a backlog of things to do in the test suite right now, and my current priority is implementing tests for new functions added in 2023.12 or 2024.12 versions of the standard. So some very simple tests here would not hurt. The tests already have a list of two-argument functions which could be reused.

@asmeurer
Copy link
Member

Were you wanting to add support for devices that don't support certain dtypes, or is that something that we should add in a later pull request?

@asmeurer
Copy link
Member

Here are all the places in the code that call _new without a device keyword

Actually, I think we should make device a required argument to Array._new. That way all APIs in array-api-strict are required to make sure they do proper device handling.

@betatim
Copy link
Member Author

betatim commented Oct 16, 2024

Were you wanting to add support for devices that don't support certain dtypes, or is that something that we should add in a later pull request?

I'd do that in a separate PR. If only because this one is already quite long and hard to check by looking at the diff.

Here are all the places in the code that call _new without a device keyword

Actually, I think we should make device a required argument to Array._new. That way all APIs in array-api-strict are required to make sure they do proper device handling.

That is a good idea. I like it

@asmeurer
Copy link
Member

Nice. I feel much better about this after the latest commit making device required.

It looks like another PR I just merged has created a small conflict here, but other than that, I am +1 to merging this.

@asmeurer asmeurer enabled auto-merge October 16, 2024 19:15
@asmeurer asmeurer merged commit cc61b49 into data-apis:main Oct 16, 2024
21 checks passed
@betatim betatim deleted the multiple-devices branch October 18, 2024 08:31
@betatim
Copy link
Member Author

betatim commented Oct 18, 2024

Thanks for taking this over the finish line!

@asmeurer
Copy link
Member

I opened #70 for ideas for further work here.

@lucascolley
Copy link
Member

lucascolley commented Dec 10, 2024

@betatim @asmeurer am I correct in thinking that the "default device" is now supposed to be CPU_DEVICE as defined in the array object file? If so, I think there is a one-line fix to gh-99, which is blocking us from removing dependency on __array__ in SciPy.

@betatim
Copy link
Member Author

betatim commented Dec 19, 2024

Yes that is the default device (I've not followed the scipy discussion, so I have no idea if this is a good thing?)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add virtual devices to make it easier for array API consumer to check that they use device correctly
3 participants