-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (77 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
85 lines (77 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[project]
name = "comma-video-compression-challenge"
version = "0.1.0"
requires-python = "~=3.11"
dependencies = [
"numpy",
"einops",
"timm",
"safetensors",
"segmentation-models-pytorch",
"tqdm",
"pillow",
"av",
"charset-normalizer",
"requests",
"urllib3",
"brotli",
]
[dependency-groups]
cpu = ["torch", "torchvision"]
cu126 = ["torch", "torchvision", "nvidia-dali-cuda120"]
cu128 = ["torch", "torchvision", "nvidia-dali-cuda120"]
cu130 = ["torch", "torchvision", "nvidia-dali-cuda130"]
mps = ["torch", "torchvision"]
[tool.uv]
conflicts = [
[{ group = "cpu" }, { group = "cu126" }],
[{ group = "cpu" }, { group = "cu128" }],
[{ group = "cpu" }, { group = "cu130" }],
[{ group = "cpu" }, { group = "mps" }],
[{ group = "cu126" }, { group = "cu128" }],
[{ group = "cu126" }, { group = "cu130" }],
[{ group = "cu126" }, { group = "mps" }],
[{ group = "cu128" }, { group = "cu130" }],
[{ group = "cu128" }, { group = "mps" }],
[{ group = "cu130" }, { group = "mps" }],
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu", group = "cpu" },
{ index = "pytorch-cu126", group = "cu126" },
{ index = "pytorch-cu128", group = "cu128" },
{ index = "pytorch-cu130", group = "cu130" },
]
torchvision = [
{ index = "pytorch-cpu", group = "cpu" },
{ index = "pytorch-cu126", group = "cu126" },
{ index = "pytorch-cu128", group = "cu128" },
{ index = "pytorch-cu130", group = "cu130" },
]
nvidia-dali-cuda120 = [
{ index = "nvidia", group = "cu126" },
{ index = "nvidia", group = "cu128" },
]
nvidia-dali-cuda130 = [
{ index = "nvidia", group = "cu130" },
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu/"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu126"
url = "https://download.pytorch.org/whl/cu126/"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128/"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu130"
url = "https://download.pytorch.org/whl/cu130/"
explicit = true
[[tool.uv.index]]
name = "nvidia"
url = "https://pypi.nvidia.com"
explicit = true