-
Notifications
You must be signed in to change notification settings - Fork 22
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
Remove mentions of 2.4 in docs and error messages #361
Conversation
2. The PyTorch version ({torch.__version__}) is not compatible with | ||
this version of TorchCodec. Refer to the version compatibility | ||
table: | ||
https://github.com/pytorch/torchcodec?tab=readme-ov-file#installing-torchcodec. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sadly it's impossible to tell users which version of torchcodec they're using, because the torchcodec
module isn't fully initialized at this point. There's also no point telling them "you can figure it out by doing python -c 'import torchcodec; print(torchcodec.__version__)'" because it is precisely the
import torchcodec` part that is triggering the RuntimeError of the above message.
- [Ship wheels for MacOS](https://github.com/pytorch/torchcodec/issues/111), so | ||
that MacOS users can `pip install torchcodec`. For now this is only supported | ||
on Linux, but MacOS users can [build from source](./CONTRIBUTING.md). | ||
- [GPU decoding](https://github.com/pytorch/torchcodec/pull/58) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drive-by
| `torchcodec` | `torch` | Python | | ||
| ------------------ | ------------------ | ------------------- | | ||
| `main` / `nightly` | `main` / `nightly` | `>=3.9`, `<=3.12` | | ||
| not yet supported | `2.5` | `>=3.9`, `<=3.12` | | ||
| `0.0.3` | `2.4` | `>=3.8`, `<=3.12` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to have a torchcodec with cuda column here too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if I understand correctly. The CPU and CUDA version of torchcodec should have the same expected pytorch version?
Closes #235
This PR also: