-
Notifications
You must be signed in to change notification settings - Fork 20
Making sgl-kernel work by chaging torch back to 2.9.1 #33
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -22,7 +22,7 @@ dependencies = [ | |||||
| "blobfile==3.0.0", | ||||||
| "build", | ||||||
| "compressed-tensors", | ||||||
| "cuda-python>=13.1,<13.3", | ||||||
| "cuda-python>=13.0", | ||||||
| "decord2", | ||||||
| "datasets", | ||||||
| "einops", | ||||||
|
|
@@ -64,11 +64,11 @@ dependencies = [ | |||||
| "tiktoken", | ||||||
| "timm==1.0.16", | ||||||
| "torch_memory_saver==0.0.9", | ||||||
| "torch>=2.10,<2.12", | ||||||
| "torch==2.9.1", | ||||||
| "torchao==0.9.0", | ||||||
| "torchaudio>=2.10,<2.12", | ||||||
| "torchaudio==2.9.1", | ||||||
| "torchcodec==0.8.0 ; sys_platform != 'linux' or (sys_platform == 'linux' and platform_machine != 'aarch64' and platform_machine != 'arm64' and platform_machine != 'armv7l')", # torchcodec does not exist in those systems. If not provided, transformer will use torchvision instead by default. | ||||||
| "torchvision>=0.25,<0.27", | ||||||
| "torchvision", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing the version constraint for
Suggested change
|
||||||
| "tqdm", | ||||||
| "transformers==4.57.1", | ||||||
| "uvicorn", | ||||||
|
|
||||||
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.
Removing the upper bound for
cuda-pythonmight lead to compatibility issues with future versions. Since the goal is to support CUDA 13.0, it is recommended to keep the upper bound while lowering the minimum version to maintain environment stability.