-
Notifications
You must be signed in to change notification settings - Fork 744
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
Missing PyTorch MPS support in CI builds due to older SDK #1464
Comments
That new version of the SDK is probably available only in macos 12.x right? I'm not going to do that for this release anyway |
Yeah it looks like 12.1 is the latest version available in the 11 runner: |
I've created a branch from current master & the zlib 1.3.1 commit from the release branch and did an update to the macOS 12 runner image to get a first impression of how many presets are breaking. Looking through the results, we get 4 presets that are failing on macOS 12 (without failing on all other platforms).
Other builds either fail on all platforms (skia and mxnet) or only on linux-arm (seems like a mirror is down) so I'm assuming these are unrelated. I have a hunch for scipy: Perhaps I should also remove |
No, please use GCC 11. Newer versions of GCC tend to be too buggy to be usable. We'll need to update all these lines too: |
Ah, yes, please remove GCC 13. Are you saving GCC 10 is still available? If that still works that's OK, yes |
Yes it looks like GCC 10 just not installed by default anymore in the new image but it can still be installed via Homebrew like it's already done. I'm doing another run with GCC 13 removed. |
I just gave the
macosx-arm64
PyTorch from the CI build a try just to realize that GPU support via MPS is missing. The reason seems that we need a sdk version>= 12.3
but the build is using12.1
:https://github.com/pytorch/pytorch/blob/af8f37c2b6f9f670ee8154e81ebd9fce7843f60e/CMakeLists.txt#L117C1-L118C46
https://github.com/bytedeco/javacpp-presets/actions/runs/7650509878/job/20880141743#step:2:2541
It also seems like I'm just in time to have missed the release deadline. 🙈
The text was updated successfully, but these errors were encountered: